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
{{ message }}
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.
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?
The text was updated successfully, but these errors were encountered:
bugspunny
changed the title
Resume data does not include key or progress (getResumableFilesData)
Resume data (from getResumableFilesData())does not include key or progress
Oct 8, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 thelocalStorage
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 justkey
):if (uploadData.key) { data.key = uploadData.key; }
Would it be possible to also return these in the
getResumableFilesData()
data structure?The text was updated successfully, but these errors were encountered: