From 54553557092f9e4784530528de17f3e596a7b3cb Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Fri, 7 Aug 2026 17:39:38 +0300 Subject: [PATCH] Show only Nickname AoR in account list --- app/src/main/kotlin/com/tutpro/baresip/AccountsScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/AccountsScreen.kt b/app/src/main/kotlin/com/tutpro/baresip/AccountsScreen.kt index 6d9bc14c..92e5379d 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/AccountsScreen.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/AccountsScreen.kt @@ -208,7 +208,7 @@ fun NewAccount(navController: NavController) { if (Account.ofAor(aor) != null) { alertTitle.value = ctx.getString(R.string.notice) alertMessage.value = - String.format(ctx.getString(R.string.account_exists), aor.removePrefix("sip:")) + String.format(ctx.getString(R.string.account_exists), aor.split(":")[1]) showAlert.value = true return null }