mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Added workaround for linphone-config:// URIs
This commit is contained in:
parent
c63e8a9ae9
commit
7a6c3ff70b
1 changed files with 1 additions and 0 deletions
|
|
@ -73,6 +73,7 @@ class LinphoneUtils {
|
|||
val url = when {
|
||||
remoteConfigUri.startsWith("http://") || remoteConfigUri.startsWith("https://") -> remoteConfigUri
|
||||
remoteConfigUri.startsWith("file://") -> remoteConfigUri
|
||||
remoteConfigUri.startsWith("//") -> "https:$remoteConfigUri"
|
||||
else -> "https://$remoteConfigUri"
|
||||
}
|
||||
url
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue