mirror of
https://github.com/zoriya/react-native-background-downloader.git
synced 2025-12-06 06:56:10 +00:00
ios: fix access empty storedCompletionHandler
This commit is contained in:
@@ -308,12 +308,12 @@ RCT_EXPORT_METHOD(completeHandler:(nonnull NSString *)jobId
|
||||
rejecter:(RCTPromiseRejectBlock)reject)
|
||||
{
|
||||
NSLog(@"[RNBackgroundDownloader] - [completeHandlerIOS]");
|
||||
if (storedCompletionHandler) {
|
||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
||||
if (storedCompletionHandler) {
|
||||
storedCompletionHandler();
|
||||
storedCompletionHandler = nil;
|
||||
}];
|
||||
}
|
||||
}
|
||||
}];
|
||||
resolve(nil);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user