mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Display conversations in unified inbox widget
This commit is contained in:
@@ -23,12 +23,15 @@ import java.util.Objects;
|
||||
|
||||
public class TupleMessageWidget extends EntityMessage {
|
||||
public String accountName;
|
||||
public int unseen;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof TupleMessageEx) {
|
||||
TupleMessageEx other = (TupleMessageEx) obj;
|
||||
return (super.equals(obj) && Objects.equals(this.accountName, other.accountName));
|
||||
return (super.equals(obj) &&
|
||||
Objects.equals(this.accountName, other.accountName) &&
|
||||
this.unseen == other.unseen);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user