Skip to content

Commit

Permalink
Add item to list instead of initializing with it
Browse files Browse the repository at this point in the history
  • Loading branch information
triallax committed Mar 21, 2021
1 parent 2a47d76 commit 2baa26e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,8 @@ protected void showStreamDialog(final StreamInfoItem item) {
return;
}

final List<StreamDialogEntry> entries =
new ArrayList<>(Arrays.asList(StreamDialogEntry.show_channel_details));
final List<StreamDialogEntry> entries = new ArrayList<>();
entries.add(StreamDialogEntry.show_channel_details)

if (PlayerHolder.getType() != null) {
entries.add(StreamDialogEntry.enqueue);
Expand Down

0 comments on commit 2baa26e

Please sign in to comment.