Get unexposed message count

This commit is contained in:
M66B
2024-03-02 22:22:50 +01:00
parent 947ae77df3
commit c986de943d
5 changed files with 27 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public int messages;
public int content;
public int unseen;
public int unexposed;
public int flagged;
public int executing;
@@ -84,6 +85,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen &&
this.unexposed == other.unexposed &&
this.flagged == other.flagged &&
this.executing == other.executing);
} else