diff --git a/app/src/main/kotlin/org/fossify/contacts/dialogs/CreateNewGroupDialog.kt b/app/src/main/kotlin/org/fossify/contacts/dialogs/CreateNewGroupDialog.kt index 1e3a2ffc..205de09d 100644 --- a/app/src/main/kotlin/org/fossify/contacts/dialogs/CreateNewGroupDialog.kt +++ b/app/src/main/kotlin/org/fossify/contacts/dialogs/CreateNewGroupDialog.kt @@ -32,8 +32,7 @@ class CreateNewGroupDialog(val activity: BaseSimpleActivity, val callback: (newG val contactSources = ArrayList() ContactsHelper(activity).getContactSources { - it.filter { it.type.contains("google", true) }.mapTo(contactSources) { ContactSource(it.name, it.type, it.name) } - contactSources.add(activity.getPrivateContactSource()) + it.mapTo(contactSources) { ContactSource(it.name, it.type, it.publicName) } val items = ArrayList() contactSources.forEachIndexed { index, contactSource ->