Show/store signature verified

This commit is contained in:
M66B
2020-06-06 12:14:32 +02:00
parent 913c9ad0d8
commit e9a23ab3e1
6 changed files with 2289 additions and 2 deletions

View File

@@ -143,6 +143,8 @@ public class EntityMessage implements Serializable {
public Boolean plain_only = null;
public Integer encrypt = null;
public Integer ui_encrypt = null;
@NonNull
public Boolean verified = false;
public String preview;
@NonNull
public Boolean signature = true;
@@ -352,6 +354,7 @@ public class EntityMessage implements Serializable {
Objects.equals(this.plain_only, other.plain_only) &&
Objects.equals(this.encrypt, other.encrypt) &&
Objects.equals(this.ui_encrypt, other.ui_encrypt) &&
this.verified == other.verified &&
Objects.equals(this.preview, other.preview) &&
this.signature.equals(other.signature) &&
Objects.equals(this.sent, other.sent) &&