response code fix

This commit is contained in:
BlueSkiesAndGreenPastures
2025-06-23 12:14:53 -05:00
parent e8f9886d15
commit 70e9ea9387
+2 -2
View File
@@ -96,7 +96,7 @@ export default function (ctx: AppContext, app: Express) {
escapeHTML(url.toString()),
`https://${ctx.cfg.service.appHostname}`,
)
res.writeHead(403, {
res.writeHead(200, {
'Content-Type': 'text/html',
'Content-Length': Buffer.byteLength(html),
})
@@ -115,7 +115,7 @@ export default function (ctx: AppContext, app: Express) {
escapeHTML(url.toString()),
`https://${ctx.cfg.service.appHostname}`,
)
res.writeHead(403, {
res.writeHead(200, {
'Content-Type': 'text/html',
'Content-Length': Buffer.byteLength(html),
})