mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-06-27 15:43:07 +00:00
Merge pull request #12322 from dev-victoria/tiny-code-fixes
Fix equality comparison in Tab class
This commit is contained in:
commit
033cc08c26
@ -458,7 +458,7 @@ public abstract class Tab {
|
|||||||
final ChannelTab other = (ChannelTab) obj;
|
final ChannelTab other = (ChannelTab) obj;
|
||||||
return super.equals(obj)
|
return super.equals(obj)
|
||||||
&& channelServiceId == other.channelServiceId
|
&& channelServiceId == other.channelServiceId
|
||||||
&& channelUrl.equals(other.channelName)
|
&& channelUrl.equals(other.channelUrl)
|
||||||
&& channelName.equals(other.channelName);
|
&& channelName.equals(other.channelName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user