mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 17:11:12 +01:00
Low light archive/sent folder name when message duplicate
This commit is contained in:
@@ -29,6 +29,7 @@ public class TupleMessageEx extends EntityMessage {
|
||||
public int unseen;
|
||||
public int unflagged;
|
||||
public int attachments;
|
||||
public boolean duplicate;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
@@ -43,7 +44,8 @@ public class TupleMessageEx extends EntityMessage {
|
||||
this.count == other.count &&
|
||||
this.unseen == other.unseen &&
|
||||
this.unflagged == other.unflagged &&
|
||||
this.attachments == other.attachments);
|
||||
this.attachments == other.attachments &&
|
||||
this.duplicate == other.duplicate);
|
||||
}
|
||||
return super.equals(obj);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user