We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a2a6b commit 6f07422Copy full SHA for 6f07422
modules/default/weather/providers/openmeteo.js
@@ -381,6 +381,7 @@ WeatherProvider.register("openmeteo", {
381
currentWeather.maxTemperature = parseFloat(weather.daily[0].temperature_2m_max);
382
currentWeather.weatherType = this.convertWeatherType(weather.current_weather.weathercode, currentWeather.isDayTime());
383
currentWeather.humidity = parseFloat(weather.hourly[h].relativehumidity_2m);
384
+ currentWeather.feelsLikeTemp = parseFloat(weather.hourly[h].apparent_temperature);
385
currentWeather.rain = parseFloat(weather.hourly[h].rain);
386
currentWeather.snow = parseFloat(weather.hourly[h].snowfall * 10);
387
currentWeather.precipitationAmount = parseFloat(weather.hourly[h].precipitation);
0 commit comments