From e6ac85b7be0ae9b0a0677cb663cdcd77406b3d1e Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 30 Nov 2019 18:41:07 +0100 Subject: [PATCH] Small fix --- app/src/main/java/eu/faircode/email/EntityAttachment.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/EntityAttachment.java b/app/src/main/java/eu/faircode/email/EntityAttachment.java index b5d2e822a1..14c3a84eec 100644 --- a/app/src/main/java/eu/faircode/email/EntityAttachment.java +++ b/app/src/main/java/eu/faircode/email/EntityAttachment.java @@ -200,7 +200,8 @@ public class EntityAttachment { Objects.equals(this.encryption, other.encryption) && Objects.equals(this.size, other.size) && Objects.equals(this.progress, other.progress) && - this.available.equals(other.available)); + this.available.equals(other.available) && + Objects.equals(this.error, other.error)); } else return false; }