You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to allow my users to make parallelized uploads.
That means:
if a user goes on a page and uploads a big file TEST BIG FILE.mp4 (90 Mo)
then goes on an other page and uploads an other file TEST SMALL FILE.png (500 Ko) (but the big file isn't fully uploaded)
The two files will be uploaded
Bad behavior
Uppy instance keeps TEST BIG FILE.mp4in its state, but doesn't upload it. Only TEST SMALL FILE.png is uploaded.
At this step the Status Bar show that :
letfile/* The file object will come from an input. Will be TEST BIG FILE.mp4 and TEST SMALL FILE.png. This function is triggered two times */uppy.addFile({name: file.name,type: file.type,data: file,source: 'Local',isRemote: false,})
Do you know how to fix it ?
The text was updated successfully, but these errors were encountered:
Expected behavior
I want to allow my users to make parallelized uploads.
That means:
TEST BIG FILE.mp4
(90 Mo)TEST SMALL FILE.png
(500 Ko) (but the big file isn't fully uploaded)Bad behavior
Uppy instance keeps
TEST BIG FILE.mp4
in its state, but doesn't upload it. OnlyTEST SMALL FILE.png
is uploaded.At this step the Status Bar show that :
To reproduce
Do you know how to fix it ?
The text was updated successfully, but these errors were encountered: