aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/api/api_server.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/api_server.rs b/src/api/api_server.rs
index ab690c30..b67ebef7 100644
--- a/src/api/api_server.rs
+++ b/src/api/api_server.rs
@@ -98,7 +98,7 @@ async fn handler_inner(garage: Arc<Garage>, req: Request<Body>) -> Result<Respon
.s3_api
.root_domain
.as_ref()
- .and_then(|root_domain| host_to_bucket(&host, &root_domain));
+ .and_then(|root_domain| host_to_bucket(&host, root_domain));
if path == "/" && bucket.is_none() {
return handle_list_buckets(&api_key);