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
When sharing a 200MB ZIP-File Chrome fails with RangeError: Invalid array length at WebUtils.toByteArray (web-utils.js:7:27). This seems to work on iOS and macOS Safari without problems.
I don't know if this is a memory issue as the same code is working with smaller files without problems even on Chrome, but I found a simple fix:
Affected Platform(s):
Current Behavior
When sharing a 200MB ZIP-File Chrome fails with
RangeError: Invalid array length at WebUtils.toByteArray (web-utils.js:7:27)
. This seems to work on iOS and macOS Safari without problems.I don't know if this is a memory issue as the same code is working with smaller files without problems even on Chrome, but I found a simple fix:
Fix
If I replace the following code
with
sharing just works fine.
Note: The following one-liner (which seems even more straight forward) makes Chrome crash due to memory issues:
The text was updated successfully, but these errors were encountered: