Prevent NPE

pull/209/head
M66B 2 years ago
parent 683a300123
commit 19baa1e928

@ -377,19 +377,20 @@ public class EntityMessage implements Serializable {
DB db = DB.getInstance(context); DB db = DB.getInstance(context);
boolean notJunk = false; boolean notJunk = false;
for (Address sender : from) { if (from != null)
String email = ((InternetAddress) sender).getAddress(); for (Address sender : from) {
if (TextUtils.isEmpty(email)) String email = ((InternetAddress) sender).getAddress();
continue; if (TextUtils.isEmpty(email))
continue;
EntityContact contact = db.contact().getContact(account, EntityContact.TYPE_NO_JUNK, email);
if (contact != null) { EntityContact contact = db.contact().getContact(account, EntityContact.TYPE_NO_JUNK, email);
contact.times_contacted++; if (contact != null) {
contact.last_contacted = new Date().getTime(); contact.times_contacted++;
db.contact().updateContact(contact); contact.last_contacted = new Date().getTime();
notJunk = true; db.contact().updateContact(contact);
notJunk = true;
}
} }
}
return notJunk; return notJunk;
} }

Loading…
Cancel
Save