This repository was archived by the owner on Apr 5, 2024. It is now read-only.
This repository was archived by the owner on Apr 5, 2024. It is now read-only.
Issue while sending big files #210
Closed
Description
Hello,
Yesterday I tried to send base64 encoded pictures via a POST request with hawk, but I couldn't. I had a JS error "can't find variable e". I found out where the issue came from. In the dist/browser.js file, L616, there is the following code :
} else if (65535 < d.length) for (e = 0; e < a; e += 4) {
The problem is that the 'var' keyword is missing in the loop. I added it and it solved the issue. I don't know if it has been fixed, but it could help someone facing the same issue.