Commit 353398c7 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(src/components/settings/AccountSettingsModel): remove assert when null proxy is set

parent 5a149a72
...@@ -109,8 +109,6 @@ QVariantMap AccountSettingsModel::getProxyConfigDescription (const shared_ptr<li ...@@ -109,8 +109,6 @@ QVariantMap AccountSettingsModel::getProxyConfigDescription (const shared_ptr<li
} }
void AccountSettingsModel::setDefaultProxyConfig (const shared_ptr<linphone::ProxyConfig> &proxyConfig) { void AccountSettingsModel::setDefaultProxyConfig (const shared_ptr<linphone::ProxyConfig> &proxyConfig) {
Q_ASSERT(proxyConfig != nullptr);
CoreManager::getInstance()->getCore()->setDefaultProxyConfig(proxyConfig); CoreManager::getInstance()->getCore()->setDefaultProxyConfig(proxyConfig);
emit accountSettingsUpdated(); emit accountSettingsUpdated();
} }
......
...@@ -256,7 +256,7 @@ void SingleApplicationPrivate::connectToPrimary (int msecs, char connectionType) ...@@ -256,7 +256,7 @@ void SingleApplicationPrivate::connectToPrimary (int msecs, char connectionType)
cout << "[PROCESS ABNORMALLY TERMINATED]: " << signum << endl; cout << "[PROCESS ABNORMALLY TERMINATED]: " << signum << endl;
#ifdef Q_OS_LINUX #ifdef Q_OS_LINUX
cout << "Please to remove your ~/.ICEauthority file and rerun." << endl; cout << "If you have used valgrind, please remove your ~/.ICEauthority file and rerun." << endl;
#endif // ifdef Q_OS_UNIX #endif // ifdef Q_OS_UNIX
::exit(128 + signum); ::exit(128 + signum);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment