Fixed opening private contacts not working in Simple Dialer

This commit is contained in:
Agnieszka C 2022-01-23 18:04:50 +01:00
parent 6a6a8ae8f1
commit 9437f279a5
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class LocalContactsHelper(val context: Context) {
}
return getEmptyLocalContact().apply {
id = if (contact.id == 0) null else contact.id
id = if (contact.id <= FIRST_CONTACT_ID) null else contact.id
prefix = contact.prefix
firstName = contact.firstName
middleName = contact.middleName