From 791e2e119cc477d643b272841c2bd78a7af9f8bf Mon Sep 17 00:00:00 2001 From: ValessioBrito <contato@valessiobrito.com.br> Date: Thu, 21 Mar 2019 12:57:07 -0400 Subject: [PATCH] fix TimeZone 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 4b474a7d..5669115c 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.getHours(); +h = h - 4; var m = d.getDate(); document.body.className = "day" + m + " time" + h; -- 2.25.1