mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
Fix issue with outbound proxy if proxy contains <>
This commit is contained in:
parent
9e306af6fd
commit
bbbf9bf8a2
1 changed files with 1 additions and 1 deletions
|
|
@ -311,7 +311,7 @@ public class LinphonePreferences {
|
|||
LinphoneProxyConfig prxCfg = getProxyConfig(n);
|
||||
if (enabled) {
|
||||
String route = prxCfg.getProxy();
|
||||
if (!route.startsWith("sip:")) {
|
||||
if (!route.contains("sip:")) {
|
||||
route = "sip:" + route;
|
||||
}
|
||||
prxCfg.setRoute(route);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue