From b2d77387047029fe9e812250b0eef21fdaa04edc Mon Sep 17 00:00:00 2001 From: QuentinArguillere Date: Fri, 17 Sep 2021 11:17:36 +0200 Subject: [PATCH] Stop hiding assistant view after a successful configuring --- Classes/AssistantView.m | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Classes/AssistantView.m b/Classes/AssistantView.m index 04afeb889..b6b5b65db 100644 --- a/Classes/AssistantView.m +++ b/Classes/AssistantView.m @@ -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 {