mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Added workaround for linphone-config:// URIs
This commit is contained in:
parent
d2b12159af
commit
dce7095f74
1 changed files with 1 additions and 0 deletions
|
|
@ -74,6 +74,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