mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-27 00:38:09 +00:00
Check identity on LinphoneLogin
This commit is contained in:
parent
85f3b9ab93
commit
4409a01509
1 changed files with 4 additions and 0 deletions
|
|
@ -358,6 +358,10 @@ private static AssistantActivity instance;
|
|||
|
||||
try {
|
||||
String identity = proxyConfig.getIdentity();
|
||||
if (identity == null) {
|
||||
LinphoneUtils.displayErrorAlert(getString(R.string.error), this);
|
||||
return;
|
||||
}
|
||||
identity = identity.replace("?", accountCreator.getUsername());
|
||||
addr = LinphoneCoreFactory.instance().createLinphoneAddress(identity);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue