Prevent NPE

This commit is contained in:
M66B 2022-09-27 15:14:52 +02:00
parent 683a300123
commit 19baa1e928
1 changed files with 12 additions and 11 deletions

View File

@ -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); EntityContact contact = db.contact().getContact(account, EntityContact.TYPE_NO_JUNK, email);
if (contact != null) { if (contact != null) {
contact.times_contacted++; contact.times_contacted++;
contact.last_contacted = new Date().getTime(); contact.last_contacted = new Date().getTime();
db.contact().updateContact(contact); db.contact().updateContact(contact);
notJunk = true; notJunk = true;
}
} }
}
return notJunk; return notJunk;
} }