Highlight unsnoozed messages

This commit is contained in:
M66B
2020-05-19 12:46:35 +02:00
parent ae9b4b2d42
commit a3f7ee6f10
7 changed files with 2282 additions and 4 deletions

View File

@@ -179,6 +179,8 @@ public class EntityMessage implements Serializable {
public Boolean ui_browsed = false;
public Long ui_busy;
public Long ui_snoozed;
@NonNull
public Boolean ui_unsnoozed = false;
public Integer color;
public Integer revision; // compose
public Integer revisions; // compose
@@ -368,7 +370,9 @@ public class EntityMessage implements Serializable {
this.ui_found.equals(other.ui_found) &&
this.ui_ignored.equals(other.ui_ignored) &&
this.ui_browsed.equals(other.ui_browsed) &&
Objects.equals(this.ui_busy, other.ui_busy) &&
Objects.equals(this.ui_snoozed, other.ui_snoozed) &&
this.ui_unsnoozed.equals(other.ui_unsnoozed) &&
Objects.equals(this.color, other.color) &&
Objects.equals(this.revision, other.revision) &&
Objects.equals(this.revisions, other.revisions) &&