mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Download flags for debugging purposes
This commit is contained in:
@@ -116,6 +116,7 @@ public class EntityMessage implements Serializable {
|
||||
public Boolean answered = false;
|
||||
@NonNull
|
||||
public Boolean flagged = false;
|
||||
public String flags; // system flags
|
||||
public String[] keywords; // user flags
|
||||
@NonNull
|
||||
public Boolean ui_seen = false;
|
||||
@@ -217,6 +218,7 @@ public class EntityMessage implements Serializable {
|
||||
//this.seen.equals(other.seen) &&
|
||||
//this.answered.equals(other.answered) &&
|
||||
//this.flagged.equals(other.flagged) &&
|
||||
(!BuildConfig.DEBUG || (this.flags == null ? other.flags == null : this.flags.equals(other.flags))) &&
|
||||
Helper.equal(this.keywords, other.keywords) &&
|
||||
this.ui_seen.equals(other.ui_seen) &&
|
||||
this.ui_answered.equals(other.ui_answered) &&
|
||||
@@ -263,6 +265,7 @@ public class EntityMessage implements Serializable {
|
||||
this.seen.equals(other.seen) &&
|
||||
this.answered.equals(other.answered) &&
|
||||
this.flagged.equals(other.flagged) &&
|
||||
(this.flags == null ? other.flags == null : this.flags.equals(other.flags)) &&
|
||||
Helper.equal(this.keywords, other.keywords) &&
|
||||
this.ui_seen.equals(other.ui_seen) &&
|
||||
this.ui_answered.equals(other.ui_answered) &&
|
||||
|
||||
Reference in New Issue
Block a user