Prevent crash

This commit is contained in:
M66B
2019-05-07 17:52:14 +02:00
parent 05fb3a51d0
commit 75774daa20
3 changed files with 7 additions and 8 deletions

View File

@@ -32,7 +32,6 @@ public class TupleMessageEx extends EntityMessage {
public String folderType;
public String identityName;
public String identityEmail;
public Boolean identitySynchronize;
public int count;
public int unseen;
public int unflagged;
@@ -56,7 +55,6 @@ public class TupleMessageEx extends EntityMessage {
this.folderType.equals(other.folderType) &&
Objects.equals(this.identityName, other.identityName) &&
Objects.equals(this.identityEmail, other.identityEmail) &&
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
this.count == other.count &&
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&
@@ -84,6 +82,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 &&
Objects.equals(this.totalSize, other.totalSize) &&
this.duplicate == other.duplicate);