Update app/src/main/java/org/schabi/newpipe/settings/tabs/Tab.java

This commit is contained in:
Stypox 2021-06-08 14:44:54 +02:00 committed by GitHub
parent 448989f32f
commit 543440e38d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -611,7 +611,8 @@ public abstract class Tab {
return false;
}
return playlistServiceId == other.playlistServiceId // Remote
return super.equals(obj)
&& playlistServiceId == other.playlistServiceId // Remote
&& playlistId == other.playlistId // Local
&& playlistUrl.equals(other.playlistUrl)
&& playlistName.equals(other.playlistName)