From d889bedd997ab1ce5a62202be7b6abdcdc793a22 Mon Sep 17 00:00:00 2001 From: Dariusz Jarosz Date: Mon, 17 Oct 2022 15:46:29 -0500 Subject: [PATCH] Resolve issue with not being able to upload multiple files on discrepancy logs. Closes #330 --- config/config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/config/config.js b/config/config.js index cd6e7ff2..2b67fb60 100644 --- a/config/config.js +++ b/config/config.js @@ -89,7 +89,6 @@ module.exports.load = function() { module.exports.multerConfig = { dest: module.exports.uploadPath, limits: { - files: 1, fileSize: (module.exports.app.upload_size || 10) * 1024 * 1024, }, };