Skip to content

Commit 535f9da

Browse files
committed
Fix rebase
1 parent 5582eac commit 535f9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/org/schabi/newpipe/RouterActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ private List<AdapterChoiceItem> getChoicesForService(final StreamingService serv
543543
// Enqueue is only shown if the current queue is not empty.
544544
// However, if the playqueue or the player is cleared after this item was chosen and
545545
// while the item is extracted, it will automatically fall back to background player.
546-
if (PlayerHolder.INSTANCE.getQueueSize() > 0) {
546+
if (PlayerHolder.getInstance().getQueueSize() > 0) {
547547
returnedItems.add(new AdapterChoiceItem(getString(R.string.enqueue_key),
548548
getString(R.string.enqueue_stream), R.drawable.ic_add));
549549
}

0 commit comments

Comments
 (0)