From b7cdf5a6e17eb939f0cfaa0d4aff571107984558 Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 5 Jun 2021 11:07:00 +0200 Subject: [PATCH] Small improvement --- app/src/main/java/eu/faircode/email/EntityAccount.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/EntityAccount.java b/app/src/main/java/eu/faircode/email/EntityAccount.java index 6367714338..39d206487b 100644 --- a/app/src/main/java/eu/faircode/email/EntityAccount.java +++ b/app/src/main/java/eu/faircode/email/EntityAccount.java @@ -380,7 +380,9 @@ public class EntityAccount extends EntityOrder implements Serializable { Objects.equals(this.error, other.error) && Objects.equals(this.last_connected, other.last_connected) && Objects.equals(this.backoff_until, other.backoff_until) && - Objects.equals(this.max_size, other.max_size)); + Objects.equals(this.max_size, other.max_size) && + Objects.equals(this.capability_idle, other.capability_idle) && + Objects.equals(this.capability_utf8, other.capability_utf8)); } else return false; }