mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 06:38:29 +02:00
Show account/folder connectivity
This commit is contained in:
@@ -47,6 +47,7 @@ public class EntityAccount {
|
||||
@NonNull
|
||||
public Boolean synchronize;
|
||||
public Long seen_until;
|
||||
public String state;
|
||||
public String error;
|
||||
|
||||
@Override
|
||||
@@ -60,6 +61,7 @@ public class EntityAccount {
|
||||
this.password.equals(other.password) &&
|
||||
this.primary.equals(other.primary) &&
|
||||
this.synchronize.equals(other.synchronize) &&
|
||||
(this.state == null ? other.state == null : this.state.equals(other.state)) &&
|
||||
(this.error == null ? other.error == null : this.error.equals(other.error)));
|
||||
} else
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user