From 9fd068be37bf8f2500e74e76ee95fd845f03063a Mon Sep 17 00:00:00 2001 From: Guillaume BIENKOWSKI Date: Wed, 15 Oct 2014 08:59:43 +0200 Subject: [PATCH] Fix last commit --- Classes/LinphoneAppDelegate.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Classes/LinphoneAppDelegate.m b/Classes/LinphoneAppDelegate.m index 4b5004e3b..222f5a25f 100644 --- a/Classes/LinphoneAppDelegate.m +++ b/Classes/LinphoneAppDelegate.m @@ -224,7 +224,8 @@ if(![LinphoneManager isLcReady]) { [[LinphoneManager instance] startLibLinphone]; } - if([LinphoneManager isLcReady]) { + if([LinphoneManager isLcReady] && !started) { + started = TRUE; [self.window makeKeyAndVisible]; [[PhoneMainView instance] startUp]; }