mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-11 11:19:54 +01:00
Fixed the bug
This commit is contained in:
parent
1bb166a9e8
commit
ddda80a577
@ -527,6 +527,9 @@ public abstract class PlayQueue implements Serializable {
|
|||||||
if (size() != other.size()) {
|
if (size() != other.size()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (other.getIndex() != getIndex()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
for (int i = 0; i < size(); i++) {
|
for (int i = 0; i < size(); i++) {
|
||||||
final PlayQueueItem stream = streams.get(i);
|
final PlayQueueItem stream = streams.get(i);
|
||||||
final PlayQueueItem otherStream = other.streams.get(i);
|
final PlayQueueItem otherStream = other.streams.get(i);
|
||||||
|
Loading…
Reference in New Issue
Block a user