mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 11:01:23 +01:00
Fixed not reply self
This commit is contained in:
@@ -213,7 +213,9 @@ public class EntityMessage implements Serializable {
|
||||
if (identities != null && senders != null)
|
||||
for (Address sender : senders)
|
||||
for (TupleIdentityEx identity : identities)
|
||||
if (identity.account == account && identity.similarAddress(sender))
|
||||
if (identity.account == account &&
|
||||
identity.self &&
|
||||
identity.similarAddress(sender))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user