FineUploader / fine-uploader

Multiple file upload plugin with image previews, drag and drop, progress bars. S3 and Azure support, image scaling, form support, chunking, resume, pause, and tons of other features.
https://fineuploader.com
MIT License
8.18k stars 1.87k forks source link

Resume data (from getResumableFilesData())does not include key or progress #2059

Open bugspunny opened 6 years ago

bugspunny commented 6 years ago

Type of issue

Uploader type

Feature Request The `getResumableFilesData()` function could return a few extra bits of interesting information, e.g. the amount already uploaded, number of total parts, and the id of the `localStorage` key. In fact I think it might already be trying to add the key to the object but it is retrieving it from the wrong place (`uploadData.key` instead of just `key`): ` if (uploadData.key) { data.key = uploadData.key; } ` Would it be possible to also return these in the `getResumableFilesData()` data structure?