mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-02-12 01:18:42 +01:00
Fix bug related to adding communities with the same name to a multicommunities
This commit is contained in:
parent
c4eace9330
commit
8c8c6c6195
@ -91,7 +91,7 @@ public class SubredditWithSelection implements Parcelable {
|
||||
if (!(obj instanceof SubredditWithSelection)) {
|
||||
return false;
|
||||
} else {
|
||||
return this.getName().compareToIgnoreCase(((SubredditWithSelection) obj).getName()) == 0;
|
||||
return this.getQualifiedName().compareToIgnoreCase(((SubredditWithSelection) obj).getQualifiedName()) == 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user