You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is error very sporadic, it happens about 20% of the time but it is pretty serious since it causes the app to crash. I have tried wrapping SpotifyAuth.login in a try catch but this error seems to be lower level on the Objective-C side.
The text was updated successfully, but these errors were encountered:
Find [delegate.window.rootViewController presentViewController: controller animated:YES completion:nil]; in SpotifyAuth.m and replace it with:
dispatch_async(dispatch_get_main_queue(), ^{ //Present the webView over the rootView [delegate.window.rootViewController presentViewController: controller animated:YES completion:nil]; });
This is error very sporadic, it happens about 20% of the time but it is pretty serious since it causes the app to crash. I have tried wrapping
SpotifyAuth.login
in a try catch but this error seems to be lower level on the Objective-C side.The text was updated successfully, but these errors were encountered: