mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-01 18:41:20 +01:00
Prevent crash
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user