Fix assistant
Check username on proxy configuration
This commit is contained in:
parent
22f26ec6ff
commit
c914916e66
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ private static AssistantActivity instance;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
String identity = proxyConfig.getIdentity();
|
String identity = proxyConfig.getIdentity();
|
||||||
if (identity == null) {
|
if (identity == null || accountCreator.getUsername() == null) {
|
||||||
LinphoneUtils.displayErrorAlert(getString(R.string.error), this);
|
LinphoneUtils.displayErrorAlert(getString(R.string.error), this);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue