mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-02-12 09: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)) {
|
if (!(obj instanceof SubredditWithSelection)) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} 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