mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Inherit identity color from account color
This commit is contained in:
@@ -24,6 +24,7 @@ import java.util.Objects;
|
||||
public class TupleIdentityEx extends EntityIdentity {
|
||||
public String accountName;
|
||||
public String accountCategory;
|
||||
public Integer accountColor;
|
||||
public boolean accountSynchronize;
|
||||
public Long drafts;
|
||||
|
||||
@@ -34,6 +35,7 @@ public class TupleIdentityEx extends EntityIdentity {
|
||||
return (super.equals(obj) &&
|
||||
Objects.equals(this.accountCategory, other.accountCategory) &&
|
||||
Objects.equals(this.accountName, other.accountName) &&
|
||||
Objects.equals(this.accountColor, other.accountColor) &&
|
||||
this.accountSynchronize == other.accountSynchronize &&
|
||||
Objects.equals(this.drafts, other.drafts));
|
||||
} else
|
||||
|
||||
Reference in New Issue
Block a user