1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-06-26 07:02:55 +00:00

ChannelTab.equals fix comparison

This commit is contained in:
Diana Victoria Furrer 2025-05-30 13:21:45 +02:00
parent c9155f7834
commit aa0b45c05f

View File

@ -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);
}