mirror of https://github.com/M66B/FairEmail.git
Small fix
This commit is contained in:
parent
443f34f12e
commit
29169275a5
|
@ -140,7 +140,7 @@ public class EntityMessage implements Serializable {
|
|||
public Boolean reply_domain; // differs from 'from'
|
||||
public String avatar; // lookup URI from sender
|
||||
public String sender; // sort key: from email address
|
||||
public Address[] submitter;
|
||||
public Address[] submitter; // sent on behalf of
|
||||
public Address[] from;
|
||||
public Address[] to;
|
||||
public Address[] cc;
|
||||
|
@ -488,6 +488,7 @@ public class EntityMessage implements Serializable {
|
|||
Objects.equals(this.reply_domain, other.reply_domain) &&
|
||||
Objects.equals(this.avatar, other.avatar) &&
|
||||
Objects.equals(this.sender, other.sender) &&
|
||||
MessageHelper.equal(this.submitter, other.submitter) &&
|
||||
MessageHelper.equal(this.from, other.from) &&
|
||||
MessageHelper.equal(this.to, other.to) &&
|
||||
MessageHelper.equal(this.cc, other.cc) &&
|
||||
|
|
Loading…
Reference in New Issue