From a4522a4f51a5af321e7622f4cb4aca25fe2048ea Mon Sep 17 00:00:00 2001 From: jessikitty Date: Sun, 23 Aug 2026 00:06:45 +1000 Subject: [PATCH] Use Clock.Now for Expired badge; clarify time zone in form text --- Views/Slides/Edit.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Views/Slides/Edit.cshtml b/Views/Slides/Edit.cshtml index 699e831..785333b 100644 --- a/Views/Slides/Edit.cshtml +++ b/Views/Slides/Edit.cshtml @@ -84,9 +84,9 @@
-
After this time the Meow is automatically skipped on displays — it stays in the library, just not shown. Leave blank for no expiry.
+
After this time the Meow is automatically skipped on displays — it stays in the library, just not shown. Leave blank for no expiry. Compared against the server's configured time zone (see the TimeZone setting).
- @if (Model.ExpiresAt.HasValue && Model.ExpiresAt.Value <= DateTime.Now) + @if (Model.ExpiresAt.HasValue && Model.ExpiresAt.Value <= Clock.Now) { Expired }