Skip to content

Commit

Permalink
[FIX] Change form body parameter charset to UTF-8 to fix issue #25456 (
Browse files Browse the repository at this point in the history
  • Loading branch information
divinespear committed May 31, 2022
1 parent 51845b1 commit b1d855e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/app/api/server/lib/getUploadFormData.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import busboy from 'busboy';

export const getUploadFormData = async ({ request }) =>
new Promise((resolve, reject) => {
const bb = busboy({ headers: request.headers });
const bb = busboy({ headers: request.headers, defParamCharset: 'utf8' });

const fields = {};

Expand Down

0 comments on commit b1d855e

Please sign in to comment.