We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5582eac commit 535f9daCopy full SHA for 535f9da
app/src/main/java/org/schabi/newpipe/RouterActivity.java
@@ -543,7 +543,7 @@ private List<AdapterChoiceItem> getChoicesForService(final StreamingService serv
543
// Enqueue is only shown if the current queue is not empty.
544
// However, if the playqueue or the player is cleared after this item was chosen and
545
// while the item is extracted, it will automatically fall back to background player.
546
- if (PlayerHolder.INSTANCE.getQueueSize() > 0) {
+ if (PlayerHolder.getInstance().getQueueSize() > 0) {
547
returnedItems.add(new AdapterChoiceItem(getString(R.string.enqueue_key),
548
getString(R.string.enqueue_stream), R.drawable.ic_add));
549
}
0 commit comments