Show single inbox / nav menu

This commit is contained in:
M66B
2022-05-04 10:00:26 +02:00
parent d92ddc4447
commit 975fdfe283
3 changed files with 10 additions and 1 deletions

View File

@@ -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) &&