mirror of
https://github.com/zerotier/coyote.git
synced 2024-11-25 12:37:02 +00:00
Fix missing relative path
Signed-off-by: Nathaniel Clark <nclark@whamcloud.com>
This commit is contained in:
parent
c24bb671b2
commit
1092772e53
1 changed files with 1 additions and 1 deletions
|
@ -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((
|
||||
|
|
Loading…
Reference in a new issue