We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff6ef3 commit 10d9270Copy full SHA for 10d9270
objectstore-server/src/extractors/batch.rs
@@ -117,7 +117,7 @@ where
117
118
// XXX: `multer::parse_boundary` requires the content-type to be `multipart/form-data`
119
let content_type = content_type.replace("multipart/mixed", "multipart/form-data");
120
- let Ok(boundary) = multer::parse_boundary(content_type).context("") else {
+ let Ok(boundary) = multer::parse_boundary(content_type) else {
121
return Err((
122
StatusCode::BAD_REQUEST,
123
"failed to parse multipart boundary",
0 commit comments