Report account errors

This commit is contained in:
M66B
2019-03-06 14:48:54 +00:00
parent 3ada7a7432
commit f1e90e038c
3 changed files with 15 additions and 9 deletions

View File

@@ -25,6 +25,7 @@ public class TupleFolderEx extends EntityFolder {
public String accountName;
public Integer accountColor;
public String accountState;
public String accountError;
public int messages;
public int content;
public int unseen;
@@ -37,6 +38,7 @@ public class TupleFolderEx extends EntityFolder {
Objects.equals(accountName, other.accountName) &&
Objects.equals(this.accountColor, other.accountColor) &&
Objects.equals(accountState, other.accountState) &&
Objects.equals(accountError, other.accountError) &&
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen);