mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 05:44:51 +02:00
Get, store and display append limit
This commit is contained in:
@@ -139,6 +139,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
|
||||
public String warning;
|
||||
public String error;
|
||||
public Long last_connected;
|
||||
public Long max_size;
|
||||
|
||||
boolean isGmail() {
|
||||
return "imap.gmail.com".equalsIgnoreCase(host);
|
||||
@@ -354,7 +355,8 @@ public class EntityAccount extends EntityOrder implements Serializable {
|
||||
Objects.equals(this.state, other.state) &&
|
||||
Objects.equals(this.warning, other.warning) &&
|
||||
Objects.equals(this.error, other.error) &&
|
||||
Objects.equals(this.last_connected, other.last_connected));
|
||||
Objects.equals(this.last_connected, other.last_connected) &&
|
||||
Objects.equals(this.max_size, other.max_size));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user