1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-06-26 15:13:00 +00:00

Merge pull request #12322 from dev-victoria/tiny-code-fixes

Fix equality comparison in Tab class
This commit is contained in:
Audric V. 2025-05-31 16:56:37 +02:00 committed by GitHub
commit 033cc08c26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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