From c0853b1734882fce43209cc8e19b723d3e7540a6 Mon Sep 17 00:00:00 2001 From: M66B Date: Mon, 26 Nov 2018 11:30:04 +0100 Subject: [PATCH] Fixed updating of keywords --- app/src/main/java/eu/faircode/email/EntityMessage.java | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/eu/faircode/email/EntityMessage.java b/app/src/main/java/eu/faircode/email/EntityMessage.java index ce826c794e..8e6b21dc3e 100644 --- a/app/src/main/java/eu/faircode/email/EntityMessage.java +++ b/app/src/main/java/eu/faircode/email/EntityMessage.java @@ -279,6 +279,7 @@ public class EntityMessage implements Serializable { this.seen.equals(other.seen) && this.answered.equals(other.answered) && this.flagged.equals(other.flagged) && + Helper.equal(this.keywords, other.keywords) && this.ui_seen.equals(other.ui_seen) && this.ui_answered.equals(other.ui_answered) && this.ui_flagged.equals(other.ui_flagged) &&