Small improvement

This commit is contained in:
M66B
2021-08-14 20:02:46 +02:00
parent 90f92980e2
commit c533b86c94
2 changed files with 8 additions and 3 deletions

View File

@@ -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) &&