1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-12-14 21:00:17 +01:00

issue:1336 Remove auto queued stream if a new stream gets appended

This commit is contained in:
shivanju 2018-11-24 17:20:57 +05:30
parent 84976a65e0
commit 5bbb0cd666

View File

@ -234,10 +234,9 @@ public abstract class PlayQueue implements Serializable {
Collections.shuffle(itemList);
}
if (!streams.isEmpty() && streams.get(streams.size() - 1).isAutoQueued() && !itemList.get(0).isAutoQueued()) {
streams.addAll(streams.size() - 1, itemList);
} else {
streams.addAll(itemList);
streams.remove(streams.size() - 1);
}
streams.addAll(itemList);
broadcast(new AppendEvent(itemList.size()));
}