delete contacts from a background thread

This commit is contained in:
tibbi 2019-09-15 10:22:15 +02:00
parent 2dc2fe01df
commit d06498eaa0

View File

@ -1528,8 +1528,10 @@ class ContactsHelper(val context: Context) {
ensureBackgroundThread { ensureBackgroundThread {
if (deleteClones) { if (deleteClones) {
getDuplicatesOfContact(originalContact, true) { contacts -> getDuplicatesOfContact(originalContact, true) { contacts ->
if (deleteContacts(contacts)) { ensureBackgroundThread {
callback(true) if (deleteContacts(contacts)) {
callback(true)
}
} }
} }
} else { } else {