-
Notifications
You must be signed in to change notification settings - Fork 999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concurrent downloads send progress updates to all progress callbacks #811
Comments
Maybe related: If I have multiple concurrent file downloads (for signature picutres, pictures and pdfs) with the following code: const result = RNFS.downloadFile({
fromUrl: `${Constants.DatafilesApi.GET_FILE_ONLY_ENDPOINT}${file.id}`,
toFile: `${signaturesPath}${file.id}.${file.extension}`,
headers: {
Authorization: token
},
discretionary: true,
cacheable: true
});
const response = await result.promise; It sometimes writes the content to the wrong file/destination (for example the signature is written to a picturePath instead of desired signaturePath. When swapping RNFS.downloadFile with RNFetchBlob on the other hand, it works as expected, the images/signature are always saved to the correct path with the correct name. const response = await RNFetchBlob.config({
path: `${signaturesPath}${file.id}.${file.extension}`
}).fetch("GET", `${Constants.DatafilesApi.GET_FILE_ONLY_ENDPOINT}${file.id}`, {
Authorization: token
}); |
Confirmed that this is an issue. |
Thanks to #842, I have published 2.16.4 with the fix for this. |
Same issue on 2.16.6 for me on Android, I am the only one? |
When 2 concurrent downloads are running the progress callback for each download will be called for progress from either download.
The if statement in the progress callback bellow should never be true.
This happens because the concurrent downloads all broadcast the same
DownloadProgress
event across the bridge.The text was updated successfully, but these errors were encountered: