Make clippy happy (#3350)

This commit is contained in:
Jonas Platte
2025-05-13 09:58:45 +02:00
committed by GitHub
parent 07f29f6c5c
commit d72a0f962a
8 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ async fn handler(State(client): State<Client>, mut req: Request) -> Result<Respo
.map(|v| v.as_str())
.unwrap_or(path);
let uri = format!("http://127.0.0.1:3000{}", path_query);
let uri = format!("http://127.0.0.1:3000{path_query}");
*req.uri_mut() = Uri::try_from(uri).unwrap();