From 99dda821d3ec423465557ddca67fa2336492b4db Mon Sep 17 00:00:00 2001 From: Veeck Date: Mon, 13 Jan 2025 20:09:33 +0100 Subject: [PATCH] Fix unknown (n/a) icon in openmeteo provider (#3691) Due to a typo the icon displayed in the openmeteo provider was "N/A" for a certain weather condition Bildschirmfoto 2025-01-13 um 16 35 40 --------- Co-authored-by: veeck --- CHANGELOG.md | 5 +++-- modules/default/weather/providers/openmeteo.js | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 167a8ae7..be656bb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,9 +26,10 @@ planned for 2025-04-01 ### Fixed -- [calendar] fix clipping events being broadcast (#3678) +- [calendar] Fix clipping events being broadcast (#3678) - [tests] Electron tests: Fixes for running under new github image ubuntu-24.04, replace xserver with labwc, running under xserver and labwc depending on env variable WAYLAND_DISPLAY is set (#3676) -- [calendar] fix arrayed symbols, #3267, again, add testcase, add testcase for #3678 +- [calendar] Fix arrayed symbols, #3267, again, add testcase, add testcase for #3678 +- [weather] Fix wrong weatherCondition name in openmeteo provider which lead to n/a icon ## [2.30.0] - 2025-01-01 diff --git a/modules/default/weather/providers/openmeteo.js b/modules/default/weather/providers/openmeteo.js index b89510c0..0d1fec43 100644 --- a/modules/default/weather/providers/openmeteo.js +++ b/modules/default/weather/providers/openmeteo.js @@ -470,7 +470,7 @@ WeatherProvider.register("openmeteo", { 61: "rain-slight-intensity", 63: "rain-moderate-intensity", 65: "rain-heavy-intensity", - 66: "freezing-rain-light-heavy-intensity", + 66: "freezing-rain-light-intensity", 67: "freezing-rain-heavy-intensity", 71: "snow-fall-slight-intensity", 73: "snow-fall-moderate-intensity",