Merge pull request #2136 from buzzcola3/master

Fix "previous song" button playing always from unshuffled queue, even when shuffle is used
This commit is contained in:
koen-futo 2025-05-12 09:36:52 +02:00 committed by GitHub
commit 4e70279982
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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