Player: Enqueue next on the existing playQueue

Fixes 150649aea9f2cf55b7b006d5538aaecd2ec57f42

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta 2025-12-13 17:03:54 +08:00
parent 1212486adb
commit 77bea1ac68

View File

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