Skip to content

Commit 6c1eaea

Browse files
committed
Fix evaluating undefined 'res.jobId'
1 parent db614b4 commit 6c1eaea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RNFSManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ + (BOOL)requiresMainQueueSetup
545545
if (hasResumableCallback) {
546546
params.resumableCallback = ^() {
547547
if (self.bridge != nil)
548-
[self sendEventWithName:@"DownloadResumable" body:nil];
548+
[self sendEventWithName:@"DownloadResumable" body:@{@"jobId": jobId}];
549549
};
550550
}
551551

0 commit comments

Comments
 (0)