From 4bf9b640b4f229a82d4f071ac8f33ad17bb44448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 18 May 2020 11:13:24 +0200 Subject: [PATCH] Adjust to source changes yet again --- custom_components/coronavirus_hessen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/coronavirus_hessen/__init__.py b/custom_components/coronavirus_hessen/__init__.py index f46b69f..b42cdac 100644 --- a/custom_components/coronavirus_hessen/__init__.py +++ b/custom_components/coronavirus_hessen/__init__.py @@ -90,7 +90,7 @@ async def async_get_data(): continue county = sanitize_county(county) - if county == "Gesamtergebnis": + if county in ("Gesamtergebnis", "gesamt"): county = OPTION_TOTAL result[county] = dict(cases=cases, deaths=deaths)