mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 07:06:18 +02:00
Combined two sub queries
This commit is contained in:
@@ -53,8 +53,7 @@ public class TupleMessageEx extends EntityMessage {
|
||||
public String identityEmail;
|
||||
public Integer identityColor;
|
||||
public Boolean identitySynchronize;
|
||||
public Address[] senders;
|
||||
public Address[] recipients;
|
||||
public Address[][] addresses;
|
||||
public int count;
|
||||
public int unseen;
|
||||
public int unflagged;
|
||||
@@ -160,8 +159,8 @@ public class TupleMessageEx extends EntityMessage {
|
||||
Objects.equals(this.identityEmail, other.identityEmail) &&
|
||||
Objects.equals(this.identityColor, other.identityColor) &&
|
||||
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
|
||||
MessageHelper.equal(this.senders, other.senders) &&
|
||||
MessageHelper.equal(this.recipients, other.recipients) &&
|
||||
MessageHelper.equal(this.addresses[0], other.addresses[0]) &&
|
||||
MessageHelper.equal(this.addresses[1], other.addresses[1]) &&
|
||||
this.count == other.count &&
|
||||
this.unseen == other.unseen &&
|
||||
this.unflagged == other.unflagged &&
|
||||
|
||||
Reference in New Issue
Block a user