We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bb166a commit ddda80aCopy full SHA for ddda80a
1 file changed
app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueue.java
@@ -527,6 +527,9 @@ public boolean equals(@Nullable final Object obj) {
527
if (size() != other.size()) {
528
return false;
529
}
530
+ if (other.getIndex() != getIndex()) {
531
+ return false;
532
+ }
533
for (int i = 0; i < size(); i++) {
534
final PlayQueueItem stream = streams.get(i);
535
final PlayQueueItem otherStream = other.streams.get(i);
0 commit comments