mirror of
https://github.com/zoriya/react-native-background-downloader.git
synced 2025-12-06 06:56:10 +00:00
made the NSURLSessionDownloadTask pointer in download method __strong, maybe it will help stuff
This commit is contained in:
@@ -121,7 +121,7 @@ RCT_EXPORT_METHOD(download: (NSDictionary *) options) {
|
||||
}
|
||||
}
|
||||
|
||||
NSURLSessionDownloadTask *task = [urlSession downloadTaskWithRequest:request];
|
||||
NSURLSessionDownloadTask __strong *task = [urlSession downloadTaskWithRequest:request];
|
||||
RNBGDTaskConfig *taskConfig = [[RNBGDTaskConfig alloc] initWithDictionary: @{@"id": identifier, @"destination": destination}];
|
||||
@synchronized(taskToConfigMap) {
|
||||
taskToConfigMap[@(task.taskIdentifier)] = taskConfig;
|
||||
|
||||
Reference in New Issue
Block a user