Added serviceId check while comparing PlayQueues

This commit is contained in:
Avently 2022-02-23 00:53:39 +03:00
parent 835c5e9d43
commit 01e0dd50ad
1 changed files with 5 additions and 2 deletions

View File

@ -532,8 +532,11 @@ public abstract class PlayQueue implements Serializable {
return false;
}
for (int i = 0; i < size(); i++) {
// Check is based on URL
if (!streams.get(i).getUrl().equals(other.streams.get(i).getUrl())) {
final PlayQueueItem stream = streams.get(i);
final PlayQueueItem otherStream = other.streams.get(i);
// Check is based on serviceId and URL
if (stream.getServiceId() != otherStream.getServiceId()
|| !stream.getUrl().equals(otherStream.getUrl())) {
return false;
}
}