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
When uploading a file, the Russian original file name is distorted
The text was updated successfully, but these errors were encountered:
We have an open PR that fixes all the unicode issues in the lts version - #1210 You can ping the maintainers for speeding things up as well
Sorry, something went wrong.
Got the same issue. Ping)
meanwhile you can use this file.originalname = Buffer.from(file.originalname, 'ascii').toString('utf8' );
file.originalname = Buffer.from(file.originalname, 'ascii').toString('utf8' );
This works fine. Thank you for the advice 🙂
No branches or pull requests
When uploading a file, the Russian original file name is distorted
The text was updated successfully, but these errors were encountered: