mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Stop hiding assistant view after a successful configuring
This commit is contained in:
parent
4dd347a297
commit
b2d7738704
1 changed files with 3 additions and 2 deletions
|
|
@ -933,7 +933,7 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
forAccount:(LinphoneAccount *)account
|
||||
message:(NSString *)message {
|
||||
// in assistant we only care about ourself
|
||||
if (account != new_account) {
|
||||
if (new_account && account != new_account) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -996,7 +996,8 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
LOGI(@"A proxy config was set up with the remote provisioning, skip assistant");
|
||||
[self onDialerClick:nil];
|
||||
}
|
||||
|
||||
|
||||
_waitView.hidden = true;
|
||||
if (nextView == nil) {
|
||||
[self fillDefaultValues];
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue