Fix prevQueueItem always returning the item from _queue, even when _queueShuffled is active

This commit is contained in:
buzzcola3 2025-04-13 20:36:15 +02:00
commit 38b9fe3017

View file

@ -598,7 +598,7 @@ class StatePlayer {
}
if(_queuePosition < _queue.size) {
return _queue[_queuePosition];
return getCurrentQueueItem();
}
}
return null;