[skip ci] Fix format

This commit is contained in:
Cohee 2024-04-27 23:02:51 +03:00
parent 943906d8a3
commit 2847b5ee45

View File

@ -15,7 +15,7 @@ function decodeFileName(str) {
* @param {import('express').NextFunction} next Next middleware
*/
function multerMonkeyPatch(req, _res, next) {
try{
try {
if (req.file) {
req.file.originalname = decodeFileName(req.file.originalname);
}