mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Fix default proxy config when using remote provisioning
This commit is contained in:
parent
3a7e48a82a
commit
e7af70de0f
2 changed files with 3 additions and 3 deletions
|
|
@ -618,7 +618,7 @@ public class LinphonePreferences {
|
|||
public int getDefaultAccountIndex() {
|
||||
LinphoneProxyConfig defaultPrxCfg = getLc().getDefaultProxyConfig();
|
||||
if (defaultPrxCfg == null)
|
||||
return 0;
|
||||
return -1;
|
||||
|
||||
LinphoneProxyConfig[] prxCfgs = getLc().getProxyConfigList();
|
||||
for (int i = 0; i < prxCfgs.length; i++) {
|
||||
|
|
@ -626,7 +626,7 @@ public class LinphonePreferences {
|
|||
return i;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
|
||||
public int getAccountCount() {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit bc4060f5f7829e7687985a761190cf6cfa70902d
|
||||
Subproject commit 066c01470218234f0c815e6431214715c633b14a
|
||||
Loading…
Add table
Reference in a new issue