mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-08-29 21:57:34 +00:00
Fix prevQueueItem always returning the item from _queue, even when _queueShuffled is active
This commit is contained in:
parent
3c7f7bfca7
commit
38b9fe3017
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ class StatePlayer {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(_queuePosition < _queue.size) {
|
if(_queuePosition < _queue.size) {
|
||||||
return _queue[_queuePosition];
|
return getCurrentQueueItem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue