Added local notes

This commit is contained in:
M66B
2021-01-21 16:23:00 +01:00
parent a2c3e9ad57
commit 6b9ac9c54f
11 changed files with 2510 additions and 5 deletions

View File

@@ -165,6 +165,7 @@ public class EntityMessage implements Serializable {
@NonNull
public Boolean verified = false;
public String preview;
public String notes;
@NonNull
public Boolean signature = true;
public Long sent; // compose = null
@@ -510,6 +511,7 @@ public class EntityMessage implements Serializable {
Objects.equals(this.ui_encrypt, other.ui_encrypt) &&
this.verified == other.verified &&
Objects.equals(this.preview, other.preview) &&
Objects.equals(this.notes, other.notes) &&
this.signature.equals(other.signature) &&
Objects.equals(this.sent, other.sent) &&
this.received.equals(other.received) &&