mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
fix(AccountSettingsModel): test if identity address of proxy config is valid
This commit is contained in:
parent
659a6a5f71
commit
1fb8e3e7a7
1 changed files with 5 additions and 1 deletions
|
|
@ -136,7 +136,11 @@ bool AccountSettingsModel::addOrUpdateProxyConfig (
|
|||
return false;
|
||||
}
|
||||
|
||||
proxyConfig->setIdentityAddress(address);
|
||||
if (proxyConfig->setIdentityAddress(address)) {
|
||||
qWarning() << QStringLiteral("Unable to set identity address: `%1`.")
|
||||
.arg(::Utils::coreStringToAppString(address->asStringUriOnly()));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Server address.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue