From 83ee34ded4d31ca09a50767e6f91b5dd0f9a2e38 Mon Sep 17 00:00:00 2001 From: Jeff Clarke Date: Tue, 8 Aug 2017 11:25:40 -0400 Subject: [PATCH] Fixed time formatting in hourly forcast when imperial units are used (thanks to Ruricu for spotting this) --- MMM-MyWeather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMM-MyWeather.js b/MMM-MyWeather.js index 5f723f5..9bc5f9a 100644 --- a/MMM-MyWeather.js +++ b/MMM-MyWeather.js @@ -1091,7 +1091,7 @@ Module.register("MMM-MyWeather", { } else { this.tmm = forecast.qpf_allday.in + "in"; } - this.thour = hourlyforecast.FCTTIME.civil; + this.thour = hourlyforecast.FCTTIME.hour + ":00"; } this.tthour = Number(hourlyforecast.FCTTIME.hour);