diff options
Diffstat (limited to 'src/api/s3_copy.rs')
-rw-r--r-- | src/api/s3_copy.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/s3_copy.rs b/src/api/s3_copy.rs index d764f7a8..b6ec48b0 100644 --- a/src/api/s3_copy.rs +++ b/src/api/s3_copy.rs @@ -104,6 +104,6 @@ pub async fn handle_copy( writeln!(&mut xml, "</CopyObjectResult>").unwrap(); Ok(Response::builder() - .header("Content-Type", "application/xml") - .body(Body::from(xml.into_bytes()))?) + .header("Content-Type", "application/xml") + .body(Body::from(xml.into_bytes()))?) } |