fixed requiresMainQueueSetup not being static like it should

This commit is contained in:
Elad Gil
2018-12-02 14:13:12 +02:00
parent 083f67dd3b
commit 439f36adef

View File

@@ -33,7 +33,7 @@ RCT_EXPORT_MODULE();
return dispatch_queue_create("com.eko.backgrounddownloader", DISPATCH_QUEUE_SERIAL);
}
- (BOOL)requiresMainQueueSetup {
+ (BOOL)requiresMainQueueSetup {
return YES;
}