From 75f26b9d38c00e02a25bcb29bb9c597cd0eb8124 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Sat, 23 Sep 2023 09:18:10 +0300 Subject: [PATCH] Removed garbage characters --- app/src/main/kotlin/com/tutpro/baresip/AccountActivity.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/AccountActivity.kt b/app/src/main/kotlin/com/tutpro/baresip/AccountActivity.kt index 0fe4f4c2..e5918bc8 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/AccountActivity.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/AccountActivity.kt @@ -193,7 +193,7 @@ class AccountActivity : AppCompatActivity() { if (text.isNotEmpty()) acc.stunServer = text "rtcp-mux" -> - it cacc.rtcpMux = text == "yes" + acc.rtcpMux = text == "yes" "100rel-mode" -> acc.rel100Mode = if (text == "yes") Api.REL100_ENABLED @@ -633,6 +633,7 @@ class AccountActivity : AppCompatActivity() { val mode = if (rel100Check.isChecked) Api.REL100_ENABLED else Api.REL100_DISABLED if (Api.account_set_rel100_mode(acc.accp, mode) == 0) { acc.rel100Mode = Api.account_rel100_mode(acc.accp) + Api.ua_update_account(ua.uap) Log.d(TAG, "New rel100Mode is ${acc.rel100Mode}") } else { Log.e(TAG, "Setting of account_rel100Mode failed")