From 94d1fe581f0d52594ef7cca9eda37d6d693c15a3 Mon Sep 17 00:00:00 2001 From: tibbi Date: Thu, 5 Dec 2019 10:06:44 +0100 Subject: [PATCH] removing some fields at storing contacts --- .../simplemobiletools/contacts/pro/helpers/ContactsHelper.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/ContactsHelper.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/ContactsHelper.kt index 92d7122e..cdd25d4c 100644 --- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/ContactsHelper.kt +++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/ContactsHelper.kt @@ -1272,8 +1272,6 @@ class ContactsHelper(val context: Context) { ContentProviderOperation.newInsert(ContactsContract.RawContacts.CONTENT_URI).apply { withValue(ContactsContract.RawContacts.ACCOUNT_NAME, contact.source) withValue(ContactsContract.RawContacts.ACCOUNT_TYPE, getContactSourceType(contact.source)) - withValue(ContactsContract.RawContacts.DIRTY, 0) - withValue(ContactsContract.RawContacts.DELETED, 0) operations.add(build()) }