From 8bfeb1c43c5c43ac3759d8ec545c18bb6b4d8d7c Mon Sep 17 00:00:00 2001 From: thedrewen Date: Mon, 3 Nov 2025 18:27:35 +0100 Subject: [PATCH] fix(status): update status message to include website link in notifications --- src/services/status.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/status.service.ts b/src/services/status.service.ts index 6b519ea..33bb67a 100644 --- a/src/services/status.service.ts +++ b/src/services/status.service.ts @@ -304,7 +304,7 @@ export class StatusService { ) }); - container.addTextDisplayComponents((text) => text.setContent(`${live ? 'Last update : ' : ''} - Receive automatic notifications when there is an outage with /follow !`)); + container.addTextDisplayComponents((text) => text.setContent(`Website Status : https://statut.protojx.com/\n${live ? 'Last update : ' : ''} - Receive automatic notifications when there is an outage with /follow !`)); return container; }