1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Skip self check for reply header

This commit is contained in:
M66B 2021-05-23 12:09:46 +02:00
parent 028f2cae90
commit 7e2a005893

View file

@ -366,12 +366,8 @@ public class EntityMessage implements Serializable {
p.appendText(subject);
p.appendElement("br");
}
} else {
DB db = DB.getInstance(context);
List<TupleIdentityEx> identities = db.identity().getComposableIdentities(account);
boolean self = replySelf(identities, account);
p.text(DF.format(new Date(received)) + " " + MessageHelper.formatAddresses(self ? to : from) + ":");
}
} else
p.text(DF.format(new Date(received)) + " " + MessageHelper.formatAddresses(from) + ":");
if (separate) {
Element div = document.createElement("div");