Skip to content

Commit 033cc08

Browse files
authored
Merge pull request TeamNewPipe#12322 from dev-victoria/tiny-code-fixes
Fix equality comparison in Tab class
2 parents c9155f7 + aa0b45c commit 033cc08

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)