Made it so user doesn't need to specify blockedExtensions.

This is useful if there are people already running lolisafe and updated to latest version
This commit is contained in:
Kanacchi 2017-04-03 18:45:56 -03:00 committed by GitHub
parent 14cf45c168
commit e2885bd37c
1 changed files with 5 additions and 2 deletions

View File

@ -22,8 +22,11 @@ const upload = multer({
storage: storage,
limits: { fileSize: config.uploads.maxSize },
fileFilter: function(req, file, cb) {
if (config.blockedExtensions.some(extension => path.extname(file.originalname) === extension)) {
return cb('This file extension is not allowed');
if (config.blockedExtensions !== undefined) {
if (config.blockedExtensions.some(extension => path.extname(file.originalname) === extension)) {
return cb('This file extension is not allowed');
}
return cb(null, true);
}
return cb(null, true);
}