We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Special character like é ,ó , é are not getting properly parsed
for example
éviépinóé is converting to éviépinóé.
We are not sure which part on parsing is causing the issue and how to fix this.
The text was updated successfully, but these errors were encountered:
same here with Korean. any hint?
Sorry, something went wrong.
@juicycool92
const bodyBuffer = Buffer.from(event['body-json'].toString(), 'base64'); const boundary = multipart.getBoundary( event.params.header['Content-Type'] || event.params.header['content-type'] ); const parts = multipart.Parse(bodyBuffer, boundary); const { filename } = parts[0]; console.log('filename ===>', filename); // á\x84\x82á\x85¡á\x84\x8Bá\x85´á\x84\x91á\x85¡á\x84\x8Bá\x85µá\x86¯.png let filename_ = Buffer.from(filename, 'binary').toString(); console.log('filename_ ===>', filename_); // 나의파일.jpg
No branches or pull requests
Special character like é ,ó , é are not getting properly parsed
for example
éviépinóé is converting to éviépinóé.
We are not sure which part on parsing is causing the issue and how to fix this.
The text was updated successfully, but these errors were encountered: