From 279f8b5d161f3d789ae374f2e855275630479bc9 Mon Sep 17 00:00:00 2001 From: M66B Date: Tue, 11 Dec 2018 13:56:48 +0100 Subject: [PATCH] Update message after decryption --- 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 d69c7a23e9..f7405e5d0f 100644 --- a/app/src/main/java/eu/faircode/email/EntityMessage.java +++ b/app/src/main/java/eu/faircode/email/EntityMessage.java @@ -286,6 +286,7 @@ public class EntityMessage implements Serializable { (this.preview == null ? other.preview == null : this.preview.equals(other.preview)) && //(this.sent == null ? other.sent == null : this.sent.equals(other.sent)) && this.received.equals(other.received) && + this.stored.equals(other.stored) && // updated after decryption //this.stored.equals(other.stored) && //this.seen.equals(other.seen) && //this.answered.equals(other.answered) &&