Fix assistant

Check username on proxy configuration
This commit is contained in:
Erwan Croze 2017-05-09 10:59:37 +02:00
parent 733c2f7a31
commit 9817d37be7

View file

@ -359,7 +359,7 @@ private static AssistantActivity instance;
try {
String identity = proxyConfig.getIdentity();
if (identity == null) {
if (identity == null || accountCreator.getUsername() == null) {
LinphoneUtils.displayErrorAlert(getString(R.string.error), this);
return;
}