From 0ff3049dbb822e237cb1f9667bed82ce02195648 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Mon, 9 Oct 2023 20:18:10 -0400 Subject: [PATCH] Chantged alias variable --- api/well-known/webfinger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/well-known/webfinger.ts b/api/well-known/webfinger.ts index 2c2ae2091..b30e82ceb 100644 --- a/api/well-known/webfinger.ts +++ b/api/well-known/webfinger.ts @@ -7,7 +7,7 @@ export default function (req: VercelRequest, res: VercelResponse) { const apDomain = (new URL(`${process.env.ACTIVITYPUB_URL}`)).hostname; let apAlias; if( process.env.ACTIVITYPUB_URL_ALIAS && process.env.ACTIVITYPUB_USER_ALIAS ) { - apAlias = `${process.env.ACTIVITYPUB_URL_ALIAS}${process.env.ACTIVITYPUB_USER_ALIAS.toLowerCase()}`; + apAlias = `${process.env.ACTIVITYPUB_ALIAS}`; } else { apAlias = "" } -- GitLab