From 9033f2b07c3238dc3c265eda26e3562c4edd1b28 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Mon, 6 May 2019 18:25:32 +0300 Subject: [PATCH] - Removed leading @ from STUN URI. --- app/src/main/kotlin/com/tutpro/baresip/Account.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/Account.kt b/app/src/main/kotlin/com/tutpro/baresip/Account.kt index 0f513320..7bfa0385 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/Account.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/Account.kt @@ -72,7 +72,7 @@ class Account(val accp: String) { if (mediaNat != "") res = res + ";medianat=${mediaNat}" - if (stunServer != "") res = res + ";stunserver=\"stun:@${stunServer}\"" + if (stunServer != "") res = res + ";stunserver=\"stun:${stunServer}\"" if (audioCodec.size > 0) { var first = true