mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-04-05 22:01:09 +02:00
handle null names at importing gracefully
This commit is contained in:
parent
4e88bf518f
commit
0342035b27
@ -135,7 +135,7 @@ class VcfImporter(val activity: SimpleActivity) {
|
|||||||
targetContactSource, starred, contactId, thumbnailUri, photo, notes, groups, organization, websites, IMs)
|
targetContactSource, starred, contactId, thumbnailUri, photo, notes, groups, organization, websites, IMs)
|
||||||
|
|
||||||
// if there is no N and ORG fields at the given contact, only FN, treat it as an organization
|
// if there is no N and ORG fields at the given contact, only FN, treat it as an organization
|
||||||
if (contact.getNameToDisplay().isEmpty() && contact.organization.isEmpty() && ezContact.formattedName.value.isNotEmpty()) {
|
if (contact.getNameToDisplay().isEmpty() && contact.organization.isEmpty() && ezContact.formattedName?.value?.isNotEmpty() == true) {
|
||||||
contact.organization.company = ezContact.formattedName.value
|
contact.organization.company = ezContact.formattedName.value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user