Skip to content

Commit aa0b45c

Browse files
committed
ChannelTab.equals fix comparison
1 parent c9155f7 commit aa0b45c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • app/src/main/java/org/schabi/newpipe/settings/tabs

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ public boolean equals(final Object obj) {
458458
final ChannelTab other = (ChannelTab) obj;
459459
return super.equals(obj)
460460
&& channelServiceId == other.channelServiceId
461-
&& channelUrl.equals(other.channelName)
461+
&& channelUrl.equals(other.channelUrl)
462462
&& channelName.equals(other.channelName);
463463
}
464464

0 commit comments

Comments
 (0)