We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is possible to get a header with this format: content-type: multipart/mixed;boundary="test";deferSpec=20220824 Specified as parameters in field values: https://httpwg.org/specs/rfc9110.html#rfc.section.5.6.6
content-type: multipart/mixed;boundary="test";deferSpec=20220824
The current code in parse boundary does not remove the quotes:
multer/src/lib.rs
Lines 178 to 180 in 09cc730
So we get an incomplete multipart stream error because multer is looking for the boundary with quotes
incomplete multipart stream
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It is possible to get a header with this format:
content-type: multipart/mixed;boundary="test";deferSpec=20220824
Specified as parameters in field values: https://httpwg.org/specs/rfc9110.html#rfc.section.5.6.6
The current code in parse boundary does not remove the quotes:
multer/src/lib.rs
Lines 178 to 180 in 09cc730
So we get an
incomplete multipart stream
error because multer is looking for the boundary with quotesThe text was updated successfully, but these errors were encountered: