fix #539, show the proper public name of private contact source at groups

This commit is contained in:
tibbi 2020-09-19 11:16:19 +02:00
parent bb496bbdfb
commit 54dafaecd2
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class CreateNewGroupDialog(val activity: BaseSimpleActivity, val callback: (newG
val items = ArrayList<RadioItem>()
contactSources.forEachIndexed { index, contactSource ->
items.add(RadioItem(index, contactSource.name))
items.add(RadioItem(index, contactSource.publicName))
}
activity.runOnUiThread {