Update app/src/main/java/org/schabi/newpipe/settings/tabs/Tab.java
This commit is contained in:
parent
448989f32f
commit
543440e38d
|
@ -611,7 +611,8 @@ public abstract class Tab {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return playlistServiceId == other.playlistServiceId // Remote
|
return super.equals(obj)
|
||||||
|
&& playlistServiceId == other.playlistServiceId // Remote
|
||||||
&& playlistId == other.playlistId // Local
|
&& playlistId == other.playlistId // Local
|
||||||
&& playlistUrl.equals(other.playlistUrl)
|
&& playlistUrl.equals(other.playlistUrl)
|
||||||
&& playlistName.equals(other.playlistName)
|
&& playlistName.equals(other.playlistName)
|
||||||
|
|
Loading…
Reference in New Issue