mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Small improvement
This commit is contained in:
parent
449166e009
commit
60a012efd2
1 changed files with 2 additions and 1 deletions
|
@ -1607,7 +1607,8 @@ class Core {
|
|||
} else {
|
||||
if (process) {
|
||||
EntityIdentity identity = matchIdentity(context, folder, message);
|
||||
if (identity != null) {
|
||||
if (identity != null &&
|
||||
(message.identity == null || !message.identity.equals(identity.id))) {
|
||||
message.identity = identity.id;
|
||||
Log.i(folder.name + " updated id=" + message.id + " identity=" + identity.id);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue