From b5df768d1846c3a977d64cdfb917142f591399df Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 18 Nov 2018 08:55:51 +0100 Subject: [PATCH] 1.160 release --- app/build.gradle | 4 ++-- app/src/main/java/eu/faircode/email/EntityMessage.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 19b9c94ffa..5949ca4db0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 { diff --git a/app/src/main/java/eu/faircode/email/EntityMessage.java b/app/src/main/java/eu/faircode/email/EntityMessage.java index 96d7f3fdd2..edf15f8bc6 100644 --- a/app/src/main/java/eu/faircode/email/EntityMessage.java +++ b/app/src/main/java/eu/faircode/email/EntityMessage.java @@ -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)) &&