Report/show account, folder, message and operation errors

This commit is contained in:
M66B
2018-08-11 08:28:54 +00:00
parent f83a4f60ec
commit 6713134e43
13 changed files with 197 additions and 73 deletions

View File

@@ -82,6 +82,7 @@ public class EntityMessage {
public Boolean ui_seen;
@NonNull
public Boolean ui_hide;
public String error;
@Override
public boolean equals(Object obj) {
@@ -107,7 +108,8 @@ public class EntityMessage {
this.received.equals(other.received) &&
this.seen.equals(other.seen) &&
this.ui_seen.equals(other.ui_seen) &&
this.ui_hide.equals(other.ui_hide));
this.ui_hide.equals(other.ui_hide) &&
(this.error == null ? other.error == null : this.error.equals(other.error)));
}
return false;
}