mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Get recipients
This commit is contained in:
@@ -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 &&
|
||||
|
||||
Reference in New Issue
Block a user