Fixed me check

pull/155/head
M66B 7 years ago
parent 856d04d79e
commit b19dd4f9bb

@ -1368,25 +1368,26 @@ class Core {
Address[] recipients = (type == EntityContact.TYPE_TO Address[] recipients = (type == EntityContact.TYPE_TO
? message.to ? message.to
: (message.reply != null ? message.reply : message.from)); : (message.reply != null ? message.reply : message.from));
if (recipients != null) {
// Check if from self // Check if from self
if (type == EntityContact.TYPE_FROM) { if (type == EntityContact.TYPE_FROM && recipients != null && recipients.length > 0) {
boolean me = true; boolean me = true;
for (Address reply : recipients) { for (Address reply : recipients) {
String email = ((InternetAddress) reply).getAddress(); String email = ((InternetAddress) reply).getAddress();
String canonical = Helper.canonicalAddress(email); String canonical = Helper.canonicalAddress(email);
if (!TextUtils.isEmpty(email) && if (!TextUtils.isEmpty(email) &&
db.identity().getIdentity(folder.account, email) == null && db.identity().getIdentity(folder.account, email) == null &&
(canonical.equals(email) || (canonical.equals(email) ||
db.identity().getIdentity(folder.account, canonical) == null)) { db.identity().getIdentity(folder.account, canonical) == null)) {
me = false; me = false;
break; break;
}
} }
if (me)
recipients = message.to;
} }
if (me)
recipients = message.to;
}
if (recipients != null) {
for (Address recipient : recipients) { for (Address recipient : recipients) {
String email = ((InternetAddress) recipient).getAddress(); String email = ((InternetAddress) recipient).getAddress();
String name = ((InternetAddress) recipient).getPersonal(); String name = ((InternetAddress) recipient).getPersonal();

Loading…
Cancel
Save