From 55b7fad3faf98d4cabf80796d8e715efaf464723 Mon Sep 17 00:00:00 2001 From: merkost Date: Thu, 29 Jun 2023 22:54:29 +1000 Subject: [PATCH] Commentary moved --- .../com/simplemobiletools/contacts/pro/extensions/Activity.kt | 2 ++ .../com/simplemobiletools/contacts/pro/helpers/VcfExporter.kt | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt index 9fcac817..6b68e2fb 100644 --- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt @@ -64,6 +64,8 @@ fun BaseSimpleActivity.shareContacts(contacts: ArrayList) { } getFileOutputStream(file.toFileDirItem(this), true) { + + // whatsApp does not support vCard version 4.0 yet VcfExporter().exportContacts(this, it, contacts, false, version = VCardVersion.V3_0) { if (it == VcfExporter.ExportResult.EXPORT_OK) { sharePathIntent(file.absolutePath, BuildConfig.APPLICATION_ID) diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/VcfExporter.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/VcfExporter.kt index 10bccdf6..f7ba012d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/VcfExporter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/VcfExporter.kt @@ -165,7 +165,6 @@ class VcfExporter { contactsExported++ } - // whatsapp does not support version 4.0 yet Ezvcard.write(cards).version(version).go(outputStream) } catch (e: Exception) { activity.showErrorToast(e)