Marino Faggiana 7 年 前
コミット
0b0aa2d31a
1 ファイル変更5 行追加6 行削除
  1. 5 6
      iOSClient/Login/CCLogin.m

+ 5 - 6
iOSClient/Login/CCLogin.m

@@ -250,13 +250,12 @@
 
                 } else {
                     
+                    appDelegate.activeLoginWeb = [CCLoginWeb new];
+                    appDelegate.activeLoginWeb.loginType = _loginType;
+                    appDelegate.activeLoginWeb.delegate = (id<CCLoginDelegateWeb>)self.delegate;
+                    appDelegate.activeLoginWeb.urlBase = urlBase;
+                    
                     [self dismissViewControllerAnimated:YES completion: ^{
-                        
-                        appDelegate.activeLoginWeb = [CCLoginWeb new];
-                        appDelegate.activeLoginWeb.loginType = _loginType;
-                        appDelegate.activeLoginWeb.delegate = (id<CCLoginDelegateWeb>)self.delegate;
-                        appDelegate.activeLoginWeb.urlBase = urlBase;
-                        
                         [appDelegate.activeLoginWeb presentModalWithDefaultTheme:(UIViewController *)self.delegate];
                     }];
                 }