mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Unified folder colors
This commit is contained in:
@@ -26,6 +26,8 @@ public class TupleFolderUnified {
|
||||
public int messages;
|
||||
public int unseen;
|
||||
public String sync_state;
|
||||
public Integer color;
|
||||
public int colorCount;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
@@ -34,7 +36,9 @@ public class TupleFolderUnified {
|
||||
return (Objects.equals(this.type, other.type) &&
|
||||
this.messages == other.messages &&
|
||||
this.unseen == other.unseen &&
|
||||
Objects.equals(this.sync_state, other.sync_state));
|
||||
Objects.equals(this.sync_state, other.sync_state) &&
|
||||
Objects.equals(this.color, other.color) &&
|
||||
this.colorCount == other.colorCount);
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user