mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
1.160 release
This commit is contained in:
parent
e8f6549aad
commit
b5df768d18
2 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue