1.160 release

pull/146/head 1.160
M66B 6 years ago
parent e8f6549aad
commit b5df768d18

@ -6,8 +6,8 @@ android {
applicationId "eu.faircode.email"
minSdkVersion 23
targetSdkVersion 28
versionCode 159
versionName "1.159"
versionCode 160
versionName "1.160"
archivesBaseName = "FairEmail-v$versionName"
javaCompileOptions {

@ -251,7 +251,7 @@ public class EntityMessage implements Serializable {
this.folder.equals(other.folder) &&
(this.identity == null ? other.identity == null : this.identity.equals(other.identity)) &&
(this.replying == null ? other.replying == null : this.replying.equals(other.replying)) &&
(this.forwarding == null ? other.forwarding == null : this.replying.equals(other.forwarding)) &&
(this.forwarding == null ? other.forwarding == null : this.forwarding.equals(other.forwarding)) &&
(this.uid == null ? other.uid == null : this.uid.equals(other.uid)) &&
(this.msgid == null ? other.msgid == null : this.msgid.equals(other.msgid)) &&
(this.references == null ? other.references == null : this.references.equals(other.references)) &&

Loading…
Cancel
Save