Low light archive/sent folder name when message duplicate

This commit is contained in:
M66B
2018-11-22 11:24:52 +01:00
parent 127156d12a
commit 45af78725a
4 changed files with 23 additions and 9 deletions

View File

@@ -29,6 +29,7 @@ public class TupleMessageEx extends EntityMessage {
public int unseen;
public int unflagged;
public int attachments;
public boolean duplicate;
@Override
public boolean equals(Object obj) {
@@ -43,7 +44,8 @@ public class TupleMessageEx extends EntityMessage {
this.count == other.count &&
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&
this.attachments == other.attachments);
this.attachments == other.attachments &&
this.duplicate == other.duplicate);
}
return super.equals(obj);
}