Show if drafts

This commit is contained in:
M66B
2019-01-01 15:26:30 +01:00
parent 47fed9180b
commit 186d6e1943
7 changed files with 56 additions and 3 deletions

View File

@@ -30,6 +30,7 @@ public class TupleMessageEx extends EntityMessage {
public int unseen;
public int unflagged;
public int attachments;
public int drafts;
public int visible;
public boolean duplicate;
@@ -48,6 +49,7 @@ public class TupleMessageEx extends EntityMessage {
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&
this.attachments == other.attachments &&
this.drafts == other.drafts &&
this.visible == other.visible &&
this.duplicate == other.duplicate);
}