fujiokayu / S4

simple serverless secure storage
MIT License
1 stars 0 forks source link

Unhandled Runtime Error when download jpeg #12

Closed fujiokayu closed 3 years ago

fujiokayu commented 3 years ago

Unhandled Runtime Error InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range.

Source components/Download.tsx (19:25) @ _callee$

17 | } 18 | const base64String = await response.text()

19 | const decodeString = atob(base64String) | ^ 20 | let array = new Uint8Array(decodeString.length); 21 | for (let i = 0; i < decodeString.length; i++){ 22 | array[i] = decodeString.charCodeAt(i); Show collapsed frames

fujiokayu commented 3 years ago

the jpeg file uploaded before commit e36f936226504411e6b88fdc21ac9311dee999f5. close