Handle deletion of contacts

This commit is contained in:
M66B 2019-03-28 07:18:29 +00:00
parent f0b51a1edf
commit c4ab2d0ed9
1 changed files with 5 additions and 7 deletions

View File

@ -1281,13 +1281,11 @@ class Core {
Log.i(folder.name + " updated id=" + message.id + " uid=" + message.uid + " unbrowse");
}
if (message.avatar == null) {
Uri lookupUri = ContactInfo.getLookupUri(context, message.from);
if (lookupUri != null) {
update = true;
message.avatar = lookupUri.toString();
Log.i(folder.name + " updated id=" + message.id + " lookup=" + lookupUri);
}
Uri lookupUri = ContactInfo.getLookupUri(context, message.from);
if ((message.avatar == null) == (lookupUri != null)) {
update = true;
message.avatar = (lookupUri == null ? null : lookupUri.toString());
Log.i(folder.name + " updated id=" + message.id + " lookup=" + lookupUri);
}
if (update)