Fixed message list flickering

This commit is contained in:
M66B 2018-08-14 09:22:53 +00:00
parent 7807008c24
commit 2f2dabe919
1 changed files with 23 additions and 6 deletions

View File

@ -112,12 +112,12 @@ public class EntityMessage {
(this.msgid == null ? other.msgid == null : this.msgid.equals(other.msgid)) &&
(this.references == null ? other.references == null : this.references.equals(other.references)) &&
(this.inreplyto == null ? other.inreplyto == null : this.inreplyto.equals(other.inreplyto)) &&
(this.thread == null ? other.thread == null : thread.equals(other.thread)) &&
(this.from == null ? other.from == null : this.from.equals(other.from)) &&
(this.to == null ? other.to == null : this.to.equals(other.to)) &&
(this.cc == null ? other.cc == null : this.cc.equals(other.cc)) &&
(this.bcc == null ? other.bcc == null : this.bcc.equals(other.bcc)) &&
(this.reply == null ? other.reply == null : this.reply.equals(other.reply)) &&
(this.thread == null ? other.thread == null : this.thread.equals(other.thread)) &&
equal(this.from, other.from) &&
equal(this.to, other.to) &&
equal(this.cc, other.cc) &&
equal(this.bcc, other.bcc) &&
equal(this.reply, other.reply) &&
(this.subject == null ? other.subject == null : this.subject.equals(other.subject)) &&
(this.body == null ? other.body == null : this.body.equals(other.body)) &&
(this.sent == null ? other.sent == null : this.sent.equals(other.sent)) &&
@ -129,4 +129,21 @@ public class EntityMessage {
}
return false;
}
private static boolean equal(Address[] a1, Address[] a2) {
if (a1 == null && a2 == null)
return true;
if (a1 == null || a2 == null)
return false;
if (a1.length != a2.length)
return false;
for (int i = 0; i < a1.length; i++)
if (!a1[i].toString().equals(a2[i].toString()))
return false;
return true;
}
}