properly handle INSERT intent
This commit is contained in:
parent
099c2110c0
commit
8491162c77
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ class ContactActivity : SimpleActivity() {
|
||||||
setupEditContact()
|
setupEditContact()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (contact!!.id == 0 && intent.action == Intent.ACTION_INSERT_OR_EDIT && intent.extras?.containsKey(KEY_PHONE) == true) {
|
if (contact!!.id == 0 && intent.extras?.containsKey(KEY_PHONE) == true && (intent.action == Intent.ACTION_INSERT_OR_EDIT || intent.action == Intent.ACTION_INSERT)) {
|
||||||
val phoneNumber = intent.getStringExtra(KEY_PHONE)
|
val phoneNumber = intent.getStringExtra(KEY_PHONE)
|
||||||
contact!!.phoneNumbers.add(PhoneNumber(phoneNumber, DEFAULT_PHONE_NUMBER_TYPE))
|
contact!!.phoneNumbers.add(PhoneNumber(phoneNumber, DEFAULT_PHONE_NUMBER_TYPE))
|
||||||
setupPhoneNumbers()
|
setupPhoneNumbers()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue