fix(status): update timestamp format in notifications to include full date and time

This commit is contained in:
2025-11-03 14:36:24 +01:00
parent afd8d1f68a
commit 7b80aca9e1

View File

@@ -303,8 +303,8 @@ export class StatusService {
)
)
});
container.addTextDisplayComponents((text) => text.setContent(`${live ? 'Last update : ' : ''}<t:${dayjs().unix()}:D> - Receive automatic notifications when there is an outage with /follow !`));
container.addTextDisplayComponents((text) => text.setContent(`${live ? 'Last update : ' : ''}<t:${dayjs().unix()}:f> - Receive automatic notifications when there is an outage with /follow !`));
return container;
}