mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 22:26:06 +02:00
Refactored account/folder monitoring
This commit is contained in:
@@ -115,7 +115,8 @@ public class EntityFolder implements Parcelable {
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof EntityFolder) {
|
||||
EntityFolder other = (EntityFolder) obj;
|
||||
return ((this.account == null ? other.account == null : this.account.equals(other.account)) &&
|
||||
return (this.id.equals(other.id) &&
|
||||
(this.account == null ? other.account == null : this.account.equals(other.account)) &&
|
||||
this.name.equals(other.name) &&
|
||||
this.type.equals(other.type) &&
|
||||
this.synchronize.equals(other.synchronize) &&
|
||||
|
||||
Reference in New Issue
Block a user