Fixed message count

This commit is contained in:
M66B
2018-12-30 07:58:02 +00:00
parent 50775a10d8
commit 367ba228f4
3 changed files with 16 additions and 12 deletions

View File

@@ -30,6 +30,7 @@ public class TupleMessageEx extends EntityMessage {
public int unseen;
public int unflagged;
public int attachments;
public int visible;
public boolean duplicate;
@Override
@@ -47,6 +48,7 @@ public class TupleMessageEx extends EntityMessage {
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&
this.attachments == other.attachments &&
this.visible == other.visible &&
this.duplicate == other.duplicate);
}
return false;
@@ -67,6 +69,7 @@ public class TupleMessageEx extends EntityMessage {
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&
this.attachments == other.attachments &&
this.visible == other.visible &&
this.duplicate == other.duplicate);
}
return false;