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
Chunked uploads started to fail after upgrading chunked-uploady from 0.17.3 to 0.17.4.
Now, each chunk fails with "chunk failure - failed to slice".
I tracked this down to sendChunks.js:64. The blob is returned correctly from getChunkDataFromFile, but the setter of chunk detects that the proxy is unmodifiable and ignores the data. This causes the next line to throw a ChunkedSendError.
0.17.3 works fine - it looks like the proxy was introduced for 0.17.4.
Let me know if I can further help with debugging.
The text was updated successfully, but these errors were encountered:
thanks @vonderheide
I actually just fixed this issue and am releasing the fix now (0.17.5)
I think it only affects dev time and not production builds but nonetheless, the fix will be out shortly
Chunked uploads started to fail after upgrading chunked-uploady from 0.17.3 to 0.17.4.
Now, each chunk fails with "chunk failure - failed to slice".
I tracked this down to sendChunks.js:64. The blob is returned correctly from getChunkDataFromFile, but the setter of chunk detects that the proxy is unmodifiable and ignores the data. This causes the next line to throw a ChunkedSendError.
0.17.3 works fine - it looks like the proxy was introduced for 0.17.4.
Let me know if I can further help with debugging.
The text was updated successfully, but these errors were encountered: