From f90e06c50e5e873589fb8e58b5314fa01cd93c78 Mon Sep 17 00:00:00 2001 From: M66B Date: Wed, 3 Feb 2021 17:37:37 +0100 Subject: [PATCH] Small improvement --- 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 e18d653631..ed0272c05b 100644 --- a/app/src/main/java/eu/faircode/email/EntityMessage.java +++ b/app/src/main/java/eu/faircode/email/EntityMessage.java @@ -498,6 +498,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.return_path, other.return_path) && MessageHelper.equal(this.submitter, other.submitter) && MessageHelper.equal(this.from, other.from) && MessageHelper.equal(this.to, other.to) &&