From 3fe28c74a1c342d1ae5237c489e348093aa62057 Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Mon, 7 Jul 2025 12:40:29 -0500 Subject: [PATCH] fix: episode air date showing 1 day behind --- templates/components/TvEpisodeList.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/components/TvEpisodeList.html.twig b/templates/components/TvEpisodeList.html.twig index e4a2621..ecff6af 100644 --- a/templates/components/TvEpisodeList.html.twig +++ b/templates/components/TvEpisodeList.html.twig @@ -37,7 +37,7 @@ - {{ episode['air_date']|date }} + {{ episode['air_date']|date(null, 'UTC') }}