mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 11:25:13 +01:00
Optimized sync/donwload, improvements
This commit is contained in:
@@ -22,6 +22,7 @@ package eu.faircode.email;
|
||||
public class TupleFolderEx extends EntityFolder {
|
||||
public String accountName;
|
||||
public int messages;
|
||||
public int content;
|
||||
public int unseen;
|
||||
|
||||
@Override
|
||||
@@ -31,6 +32,7 @@ public class TupleFolderEx extends EntityFolder {
|
||||
return (super.equals(obj) &&
|
||||
(this.accountName == null ? other.accountName == null : accountName.equals(other.accountName)) &&
|
||||
this.messages == other.messages &&
|
||||
this.content == other.content &&
|
||||
this.unseen == other.unseen);
|
||||
} else
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user