From 4ca0ce2fb24301ca8f67d1ebd3a8a30af64cf799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kl=C3=A4hn?= <39526136+Septias@users.noreply.github.com> Date: Wed, 9 Jul 2025 20:17:17 +0200 Subject: [PATCH] fix: Add query to post request for account creation (#6989) --- src/net/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/http.rs b/src/net/http.rs index 622c4c61b..942d2f172 100644 --- a/src/net/http.rs +++ b/src/net/http.rs @@ -343,7 +343,7 @@ pub(crate) async fn post_empty(context: &Context, url: &str) -> Result<(String, .authority() .context("URL has no authority")? .clone(); - let req = hyper::Request::post(parsed_url.path()) + let req = hyper::Request::post(parsed_url) .header(hyper::header::HOST, authority.as_str()) .body(http_body_util::Empty::::new())?;