Fixed the bug

This commit is contained in:
Jared Fantaye 2023-01-17 22:31:22 +01:00
parent 1bb166a9e8
commit ddda80a577
1 changed files with 3 additions and 0 deletions

View File

@ -527,6 +527,9 @@ public abstract class PlayQueue implements Serializable {
if (size() != other.size()) {
return false;
}
if (other.getIndex() != getIndex()) {
return false;
}
for (int i = 0; i < size(); i++) {
final PlayQueueItem stream = streams.get(i);
final PlayQueueItem otherStream = other.streams.get(i);