mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Add patch for multer 2.0.2
Co-authored-by: Ersun Warncke <ersun.warncke@overleaf.com> GitOrigin-RevId: 68c0b31cf9db3dedefb48cb9b1bc212cfdb5b8d1
This commit is contained in:
13
patches/multer+2.0.2.patch
Normal file
13
patches/multer+2.0.2.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
diff --git a/node_modules/multer/lib/make-middleware.js b/node_modules/multer/lib/make-middleware.js
|
||||
index 260dcb4..895b4b2 100644
|
||||
--- a/node_modules/multer/lib/make-middleware.js
|
||||
+++ b/node_modules/multer/lib/make-middleware.js
|
||||
@@ -113,7 +113,7 @@ function makeMiddleware (setup) {
|
||||
if (fieldname == null) return abortWithCode('MISSING_FIELD_NAME')
|
||||
|
||||
// don't attach to the files object, if there is no file
|
||||
- if (!filename) return fileStream.resume()
|
||||
+ if (!filename) filename = 'undefined'
|
||||
|
||||
// Work around bug in Busboy (https://github.com/mscdex/busboy/issues/6)
|
||||
if (limits && Object.prototype.hasOwnProperty.call(limits, 'fieldNameSize')) {
|
||||
Reference in New Issue
Block a user