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