From 3276bf688486a86ee6dadad58980c6407ee0ff2b Mon Sep 17 00:00:00 2001 From: ValessioBrito Date: Thu, 21 Mar 2019 12:55:35 -0400 Subject: [PATCH] Fix time zone UTC -4 --- 2019/tv/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/2019/tv/index.html b/2019/tv/index.html index 358bf9d1..8c11b759 100755 --- a/2019/tv/index.html +++ b/2019/tv/index.html @@ -362,6 +362,7 @@ fetch(feedUrl).then((res) => { var d = new Date(); var h = d.getUTCHours(); +h = h - 4; var m = d.getDate(); document.body.className = "day" + m + " time" + h; -- 2.25.1