Display conversations in unified inbox widget

This commit is contained in:
M66B
2019-07-26 16:20:23 +02:00
parent 55627735bd
commit c8ed3a4a33
4 changed files with 15 additions and 3 deletions

View File

@@ -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;
}