Skip to content
Snippets Groups Projects
Commit ad8a983e authored by cramakri's avatar cramakri
Browse files

BIS-159 SP-395 : Workaround strange deadlock in accessing URLs. Seems to be...

BIS-159 SP-395 : Workaround strange deadlock in accessing URLs. Seems to be restricted to the simulator.

SVN: 27832
parent 94ca4b34
No related branches found
No related tags found
No related merge requests found
......@@ -142,8 +142,14 @@
[call start];
}
// There is a deadlock that happens initializing the cookie storage, so do it now before
// multiple threads are running. This might only be a problem in the simulator...
- (void)cookieStorageDeadlockWorkaround { [NSHTTPCookieStorage sharedHTTPCookieStorage]; }
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self cookieStorageDeadlockWorkaround];
// Initialize the controller
[self configureControllers];
......
......@@ -40,7 +40,7 @@
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
<string>MainStoryboard_iPad</string>
<string>MainStoryboard_iPhone</string>
<key>UIMainStoryboardFile~ipad</key>
<string>MainStoryboard_iPad</string>
<key>UIPrerenderedIcon</key>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment