|
if (!is(req, ['multipart'])) return next() |
type-is use media-typer which treats the equal sign "=" as a separator (RFC 2616 sec 3.7). However, in the RFC 2046 Page 21 the boundary value is allows to use the equal sign "=".
So, when the boundary contains the equal sign "=", Multer will always skip the request.
multer/lib/make-middleware.js
Line 18 in dd3ecef
type-is use media-typer which treats the equal sign "=" as a separator (RFC 2616 sec 3.7). However, in the RFC 2046 Page 21 the boundary value is allows to use the equal sign "=".
So, when the boundary contains the equal sign "=", Multer will always skip the request.