Encode uploaded file slugs

This commit is contained in:
Pavel Djundik 2018-10-14 00:23:41 +03:00
parent de028e5dd8
commit 1d8a0e639f

View file

@ -52,7 +52,7 @@ class Uploader {
} while (fs.stat(destPath, (err) => (err ? true : false)));
fsextra.move(data.file.pathName, destPath).then(() => {
const slug = path.basename(data.file.pathName);
const slug = encodeURIComponent(path.basename(data.file.pathName));
const url = `uploads/${randomName}/${slug}`;
socket.emit("upload:success", url);
}).catch(() => {