From 9c5b6045aff755ac95f3f7aa24ae04dbd2d328c4 Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Thu, 2 May 2024 17:14:27 +0100 Subject: [PATCH] Don't request unused wind speed data --- internal/feed/openmeteo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/feed/openmeteo.go b/internal/feed/openmeteo.go index 71438f0..b3bbe49 100644 --- a/internal/feed/openmeteo.go +++ b/internal/feed/openmeteo.go @@ -94,7 +94,7 @@ func FetchWeatherForPlace(place *PlaceJson, units string) (*Weather, error) { query.Add("timeformat", "unixtime") query.Add("timezone", place.Timezone) query.Add("forecast_days", "1") - query.Add("current", "temperature_2m,apparent_temperature,weather_code,wind_speed_10m") + query.Add("current", "temperature_2m,apparent_temperature,weather_code") query.Add("hourly", "temperature_2m,precipitation_probability") query.Add("daily", "sunrise,sunset") query.Add("temperature_unit", temperatureUnit)