From f2f160b1129a2b4ba95083fb4d28a42b254b325e Mon Sep 17 00:00:00 2001 From: Ryan McGuire Date: Tue, 28 Jan 2025 17:05:25 -0500 Subject: [PATCH] Fix wunderground wind speed mapping --- pkg/provider/wunderground/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/provider/wunderground/provider.go b/pkg/provider/wunderground/provider.go index 6d5ac95..7d57f61 100644 --- a/pkg/provider/wunderground/provider.go +++ b/pkg/provider/wunderground/provider.go @@ -51,7 +51,7 @@ func MapWUUpdate(wuUpdate *WundergroundUpdate) *weather.WeatherUpdate { StationType: wuUpdate.SoftwareType, TempOutdoorF: wuUpdate.Tempf, HumidityOudoor: wuUpdate.Humidity, - WindSpeedMPH: wuUpdate.WindGustMPH, + WindSpeedMPH: wuUpdate.WindSpeedMPH, WindGustMPH: wuUpdate.WindGustMPH, WindDir: wuUpdate.WindDir, UV: wuUpdate.UV,