Experiment: show number of unseen messages in lists

This commit is contained in:
M66B
2020-06-04 13:48:18 +02:00
parent c1c3dab41c
commit 4bb5e13877
3 changed files with 23 additions and 1 deletions

View File

@@ -55,6 +55,7 @@ public class TupleMessageEx extends EntityMessage {
public int signed;
public int encrypted;
public int visible;
public int visible_unseen;
public Long totalSize;
public Integer ui_priority;
public Integer ui_importance;
@@ -113,6 +114,7 @@ public class TupleMessageEx extends EntityMessage {
this.signed == other.signed &&
this.encrypted == other.encrypted &&
this.visible == other.visible &&
this.visible_unseen == other.visible_unseen &&
Objects.equals(this.totalSize, other.totalSize) &&
Objects.equals(this.ui_priority, other.ui_priority) &&
Objects.equals(this.ui_importance, other.ui_importance) &&