mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Small improvement
This commit is contained in:
@@ -196,12 +196,12 @@ public class EntityMessage implements Serializable {
|
||||
public String[] keywords; // user flags
|
||||
public String[] labels; // Gmail
|
||||
@NonNull
|
||||
public Integer notifying = 0;
|
||||
@NonNull
|
||||
public Boolean fts = false;
|
||||
@NonNull
|
||||
public Boolean auto_classified = false;
|
||||
@NonNull
|
||||
public Integer notifying = 0;
|
||||
@NonNull
|
||||
public Boolean ui_seen = false;
|
||||
@NonNull
|
||||
public Boolean ui_answered = false;
|
||||
@@ -570,6 +570,7 @@ public class EntityMessage implements Serializable {
|
||||
this.deleted.equals(other.deleted) &&
|
||||
Objects.equals(this.flags, other.flags) &&
|
||||
Helper.equal(this.keywords, other.keywords) &&
|
||||
this.auto_classified.equals(other.auto_classified) &&
|
||||
this.notifying.equals(other.notifying) &&
|
||||
this.ui_seen.equals(other.ui_seen) &&
|
||||
this.ui_answered.equals(other.ui_answered) &&
|
||||
|
||||
Reference in New Issue
Block a user