aboutsummaryrefslogtreecommitdiff
path: root/controllers/uploadController.js
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/uploadController.js')
-rw-r--r--controllers/uploadController.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/controllers/uploadController.js b/controllers/uploadController.js
index 400b559..ee2dab5 100644
--- a/controllers/uploadController.js
+++ b/controllers/uploadController.js
@@ -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);
}