Skip to content
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

Closed
respectTheCode opened this issue Nov 15, 2019 · 4 comments
Closed

Comments

@respectTheCode
Copy link

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.

const fileDownload = fs.downloadFile({
	fromUrl,
	toFile,
	progress: progress => {
		if (progress.jobId != fileDownload.jobId) {
			console.log(
				"jobId mismatch",
				progress.jobId,
				fileDownload.jobId
			);
			return;
		}

This happens because the concurrent downloads all broadcast the same DownloadProgress event across the bridge.

@creambyemute
Copy link

creambyemute commented Dec 18, 2019

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
                    });

@cinjon
Copy link

cinjon commented Jan 31, 2020

Confirmed that this is an issue.

@itinance
Copy link
Owner

itinance commented Feb 5, 2020

Thanks to #842, I have published 2.16.4 with the fix for this.
I am going to close this issue, but pls feel free to reopen if the issue persists

@itinance itinance closed this as completed Feb 5, 2020
@MaxInMoon
Copy link

Same issue on 2.16.6 for me on Android, I am the only one?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants