Group non unified folder notifications

This commit is contained in:
M66B
2020-06-15 12:34:25 +02:00
parent 097cd0b68b
commit 42f02ba743
5 changed files with 59 additions and 21 deletions

View File

@@ -42,6 +42,7 @@ public class TupleMessageEx extends EntityMessage {
public Integer folderColor;
public String folderDisplay;
public String folderType;
public boolean folderUnified;
public boolean folderReadOnly;
public String identityName;
public String identityEmail;
@@ -101,6 +102,7 @@ public class TupleMessageEx extends EntityMessage {
this.folderName.equals(other.folderName) &&
Objects.equals(this.folderDisplay, other.folderDisplay) &&
this.folderType.equals(other.folderType) &&
this.folderUnified == other.folderUnified &&
this.folderReadOnly == other.folderReadOnly &&
Objects.equals(this.identityName, other.identityName) &&
Objects.equals(this.identityEmail, other.identityEmail) &&