From 535f9da42281ce72cf5349814e16ed36b18ac9c3 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Sat, 20 Dec 2025 21:23:38 +0100 Subject: [PATCH] Fix rebase --- app/src/main/java/org/schabi/newpipe/RouterActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/schabi/newpipe/RouterActivity.java b/app/src/main/java/org/schabi/newpipe/RouterActivity.java index eb5257354..d85fdf7de 100644 --- a/app/src/main/java/org/schabi/newpipe/RouterActivity.java +++ b/app/src/main/java/org/schabi/newpipe/RouterActivity.java @@ -543,7 +543,7 @@ public class RouterActivity extends AppCompatActivity { // Enqueue is only shown if the current queue is not empty. // However, if the playqueue or the player is cleared after this item was chosen and // while the item is extracted, it will automatically fall back to background player. - if (PlayerHolder.INSTANCE.getQueueSize() > 0) { + if (PlayerHolder.getInstance().getQueueSize() > 0) { returnedItems.add(new AdapterChoiceItem(getString(R.string.enqueue_key), getString(R.string.enqueue_stream), R.drawable.ic_add)); }