From ffb64cd8ba966c0d9c0c791ce2c4234de2bac44d Mon Sep 17 00:00:00 2001 From: M66B Date: Thu, 25 Apr 2019 18:18:42 +0200 Subject: [PATCH] Small fix --- app/src/main/java/eu/faircode/email/EntityFolder.java | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/eu/faircode/email/EntityFolder.java b/app/src/main/java/eu/faircode/email/EntityFolder.java index 34f42d9e8f..bac0e0237e 100644 --- a/app/src/main/java/eu/faircode/email/EntityFolder.java +++ b/app/src/main/java/eu/faircode/email/EntityFolder.java @@ -268,6 +268,7 @@ public class EntityFolder implements Serializable { this.collapsed == other.collapsed && this.unified == other.unified && this.notify == other.notify && + Objects.equals(this.subscribed, other.subscribed) && Objects.equals(this.total, other.total) && Helper.equal(this.keywords, other.keywords) && Objects.equals(this.tbd, other.tbd) &&