Make clippy happy (#3350)

This commit is contained in:
Jonas Platte
2025-09-28 19:15:42 +02:00
parent abe98474e1
commit 01ecea0e33
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();