mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2025-10-03 09:49:21 +02:00
ChannelTab.equals fix comparison
This commit is contained in:
parent
c9155f7834
commit
aa0b45c05f
1 changed files with 1 additions and 1 deletions
|
@ -458,7 +458,7 @@ public abstract class Tab {
|
|||
final ChannelTab other = (ChannelTab) obj;
|
||||
return super.equals(obj)
|
||||
&& channelServiceId == other.channelServiceId
|
||||
&& channelUrl.equals(other.channelName)
|
||||
&& channelUrl.equals(other.channelUrl)
|
||||
&& channelName.equals(other.channelName);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue