mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Persist notifying messages
This commit is contained in:
@@ -129,6 +129,8 @@ public class EntityMessage implements Serializable {
|
||||
public String flags; // system flags
|
||||
public String[] keywords; // user flags
|
||||
@NonNull
|
||||
public Integer notifying = 0;
|
||||
@NonNull
|
||||
public Boolean ui_seen = false;
|
||||
@NonNull
|
||||
public Boolean ui_answered = false;
|
||||
@@ -272,6 +274,7 @@ public class EntityMessage implements Serializable {
|
||||
this.flagged.equals(other.flagged) &&
|
||||
Objects.equals(this.flags, other.flags) &&
|
||||
Helper.equal(this.keywords, other.keywords) &&
|
||||
this.notifying.equals(other.notifying) &&
|
||||
this.ui_seen.equals(other.ui_seen) &&
|
||||
this.ui_answered.equals(other.ui_answered) &&
|
||||
this.ui_flagged.equals(other.ui_flagged) &&
|
||||
|
||||
Reference in New Issue
Block a user