From 1092772e535a270c18405a2d30b8661262eaecb8 Mon Sep 17 00:00:00 2001 From: Nathaniel Clark Date: Thu, 30 Mar 2023 14:53:44 -0400 Subject: [PATCH] Fix missing relative path Signed-off-by: Nathaniel Clark --- src/acme/handlers/order.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acme/handlers/order.rs b/src/acme/handlers/order.rs index 16ea9c5..f83bbf6 100644 --- a/src/acme/handlers/order.rs +++ b/src/acme/handlers/order.rs @@ -333,7 +333,7 @@ pub(crate) async fn finalize_order( Err(e) => return Err(ACMEValidationError::Other(e.to_string()).into()), }; - let url = uri_to_url(appstate.clone().baseurl, req.uri().clone()).await?; + let url = appstate.clone().baseurl; let h_order = serde_json::to_string(&order.clone().into_handler_order(url.clone())?)?; return Ok((