mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Show single inbox / nav menu
This commit is contained in:
@@ -23,6 +23,7 @@ import java.util.Objects;
|
||||
|
||||
public class TupleFolderUnified {
|
||||
public String type;
|
||||
public int folders;
|
||||
public int messages;
|
||||
public int unseen;
|
||||
public String sync_state;
|
||||
@@ -34,6 +35,7 @@ public class TupleFolderUnified {
|
||||
if (obj instanceof TupleFolderUnified) {
|
||||
TupleFolderUnified other = (TupleFolderUnified) obj;
|
||||
return (Objects.equals(this.type, other.type) &&
|
||||
this.folders == other.folders &&
|
||||
this.messages == other.messages &&
|
||||
this.unseen == other.unseen &&
|
||||
Objects.equals(this.sync_state, other.sync_state) &&
|
||||
|
||||
Reference in New Issue
Block a user