Merge pull request #12898 from TeamNewPipe/playQueue

Player: Enqueue next on the existing playQueue
This commit is contained in:
Tobi 2025-12-14 02:46:57 -08:00 committed by GitHub
commit 0b77b83bf2

View file

@ -395,7 +395,7 @@ public final class Player implements PlaybackListener, Listener {
return; return;
} }
final PlayQueueItem newItem = newQueue.getStreams().get(0); final PlayQueueItem newItem = newQueue.getStreams().get(0);
newQueue.enqueueNext(newItem, false); playQueue.enqueueNext(newItem, false);
return; return;
} }