From d45ad541ec0f82a5202e79f14a81d04dce618afc Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 20 Mar 2025 14:40:50 -0700 Subject: [PATCH] end --- bskylink/src/routes/root.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bskylink/src/routes/root.ts b/bskylink/src/routes/root.ts index 6aab9ce966..12bdf15155 100644 --- a/bskylink/src/routes/root.ts +++ b/bskylink/src/routes/root.ts @@ -8,7 +8,7 @@ export default function (ctx: AppContext, app: Express) { '/', handler(async (_req, res) => { res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`) - return res.status(301) + return res.status(301).end() }), ) }