Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Adjust for changed source data
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel authored Sep 23, 2021
1 parent 9d786bf commit e695305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/coronavirus_hessen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async def async_get_data():
continue

county = sanitize_county(county)
if county in ("Gesamtergebnis", "gesamt"):
if county.lower() in ("gesamtergebnis", "gesamt"):
county = OPTION_TOTAL

result[county] = dict(cases=cases, deaths=deaths, incidence=incidence)
Expand Down

0 comments on commit e695305

Please sign in to comment.