We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8581864 commit 2c98e70Copy full SHA for 2c98e70
StatusPage/Serve.ts
@@ -63,7 +63,8 @@ const init: PromiseVoidFunction = async (): Promise<void> => {
63
logger.debug(
64
"Status page ID not found in URL, checking request headers for domain",
65
);
66
- const host: string = req.hostname?.toString() || req.headers["host"]?.toString() || "";
+ const host: string =
67
+ req.hostname?.toString() || req.headers["host"]?.toString() || "";
68
if (host) {
69
statusPageIdOrDomain = host;
70
0 commit comments