mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Added folder display name
This commit is contained in:
@@ -23,6 +23,7 @@ public class TupleMessageEx extends EntityMessage {
|
||||
public String accountName;
|
||||
public Integer accountColor;
|
||||
public String folderName;
|
||||
public String folderDisplay;
|
||||
public String folderType;
|
||||
public boolean threaded;
|
||||
public int count;
|
||||
@@ -38,6 +39,7 @@ public class TupleMessageEx extends EntityMessage {
|
||||
(this.accountName == null ? other.accountName == null : this.accountName.equals(other.accountName)) &&
|
||||
(this.accountColor == null ? other.accountColor == null : this.accountColor.equals(other.accountColor)) &&
|
||||
this.folderName.equals(other.folderName) &&
|
||||
(this.folderDisplay == null ? other.folderDisplay == null : this.folderDisplay.equals(other.folderDisplay)) &&
|
||||
this.folderType.equals(other.folderType) &&
|
||||
this.threaded == other.threaded &&
|
||||
this.count == other.count &&
|
||||
|
||||
Reference in New Issue
Block a user