From 82f8abd96b3d8ad5d6a11b66d51c4a87e84d5832 Mon Sep 17 00:00:00 2001 From: alemi Date: Tue, 26 Mar 2024 03:54:25 +0100 Subject: [PATCH] fix: well known without protocol --- src/activitypub/well_known.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/activitypub/well_known.rs b/src/activitypub/well_known.rs index 96a52853..b3cd7786 100644 --- a/src/activitypub/well_known.rs +++ b/src/activitypub/well_known.rs @@ -139,8 +139,8 @@ pub async fn host_meta(State(ctx): State) -> Response { [("Content-Type", "application/xrd+xml")], format!(r#" - + "#, - ctx.base()) + ctx.protocol(), ctx.base()) ).into_response() }