From 88e4f959c48667a43b056e1126fed9a8f2d57730 Mon Sep 17 00:00:00 2001 From: Diego Guardia Date: Tue, 22 Jan 2019 02:16:50 -0500 Subject: [PATCH] fixed warning requiresMainQueueSetup --- ios/OAuthManager/OAuthManager.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ios/OAuthManager/OAuthManager.m b/ios/OAuthManager/OAuthManager.m index 2e51cea..0e43525 100644 --- a/ios/OAuthManager/OAuthManager.m +++ b/ios/OAuthManager/OAuthManager.m @@ -40,6 +40,11 @@ - (dispatch_queue_t)methodQueue return dispatch_queue_create("io.fullstack.oauth", DISPATCH_QUEUE_SERIAL); } ++ (BOOL)requiresMainQueueSetup +{ + return YES; +} + + (instancetype)sharedManager { dispatch_once(&onceToken, ^{ manager = [self new];