Get recipients

This commit is contained in:
M66B
2020-05-05 22:30:57 +02:00
parent e191470573
commit 691c1c7813
2 changed files with 7 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ public class TupleMessageEx extends EntityMessage {
public String identityEmail;
public Boolean identitySynchronize;
public Address[] senders;
public Address[] recipients;
public int count;
public int unseen;
public int unflagged;
@@ -104,6 +105,7 @@ public class TupleMessageEx extends EntityMessage {
Objects.equals(this.identityEmail, other.identityEmail) &&
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
MessageHelper.equal(this.senders, other.senders) &&
MessageHelper.equal(this.recipients, other.recipients) &&
this.count == other.count &&
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&