From 7b80aca9e156cca854a5af7c5bbc92c3778f8ffd Mon Sep 17 00:00:00 2001 From: CL TheDreWen Date: Mon, 3 Nov 2025 14:36:24 +0100 Subject: [PATCH] fix(status): update timestamp format in notifications to include full date and time --- src/services/status.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/status.service.ts b/src/services/status.service.ts index b05b7b3..6b519ea 100644 --- a/src/services/status.service.ts +++ b/src/services/status.service.ts @@ -303,8 +303,8 @@ 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(`${live ? 'Last update : ' : ''} - Receive automatic notifications when there is an outage with /follow !`)); return container; }