Get number of flagged messages for folders

This commit is contained in:
M66B
2020-05-10 10:10:26 +02:00
parent 3dae61a6b3
commit 36a63b066c
2 changed files with 6 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public int messages;
public int content;
public int unseen;
public int flagged;
public int executing;
@Ignore
@@ -74,6 +75,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen &&
this.flagged == other.flagged &&
this.executing == other.executing);
} else
return false;