Skip to content

Commit 10d9270

Browse files
committed
improvel
1 parent 3ff6ef3 commit 10d9270

File tree

1 file changed

+1
-1
lines changed
  • objectstore-server/src/extractors

1 file changed

+1
-1
lines changed

objectstore-server/src/extractors/batch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ where
117117

118118
// XXX: `multer::parse_boundary` requires the content-type to be `multipart/form-data`
119119
let content_type = content_type.replace("multipart/mixed", "multipart/form-data");
120-
let Ok(boundary) = multer::parse_boundary(content_type).context("") else {
120+
let Ok(boundary) = multer::parse_boundary(content_type) else {
121121
return Err((
122122
StatusCode::BAD_REQUEST,
123123
"failed to parse multipart boundary",

0 commit comments

Comments
 (0)