From b4f80122ffa4077ac46f70ba0c9fb3f2753a545a Mon Sep 17 00:00:00 2001 From: Nick dos Remedios Date: Sat, 31 Aug 2019 08:56:12 +1000 Subject: [PATCH] Fixed broken weather-partlycloudy icon MDI changed the name of an icon from `weather-partlycloudy` to `weather-partly-cloudy`. Details in https://github.com/home-assistant/home-assistant/issues/26257 --- custom_components/bom_forecast/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/bom_forecast/sensor.py b/custom_components/bom_forecast/sensor.py index 0a4ba0c..39c8472 100644 --- a/custom_components/bom_forecast/sensor.py +++ b/custom_components/bom_forecast/sensor.py @@ -179,7 +179,7 @@ ICON_MAPPING = { '1': 'mdi:weather-sunny', '2': 'mdi:weather-night', - '3': 'mdi:weather-partlycloudy', + '3': 'mdi:weather-partly-cloudy', '4': 'mdi:weather-cloudy', '6': 'mdi:weather-sunset', '8': 'mdi:weather-rainy',