Skip to content

Commit

Permalink
V2.0.10 - fix config flow issue introduced with V2023.11 of HA
Browse files Browse the repository at this point in the history
  • Loading branch information
petergridge authored Nov 16, 2023
1 parent 53a0231 commit e5131fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions custom_components/openweathermaphistory/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,10 @@ def __init__(self, config_entry) -> None:
else:
self._data = self.config_entry.options

async def async_step_user(self, user_input=None):
'''initial step? work around from HA v23 11'''
return

async def async_step_init(self, user_input=None):
'''initial step'''
if self.config_entry.options == {}:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/openweathermaphistory/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/petergridge/openweathermaphistory/issues",
"requirements": [],
"version": "2.0.9"
"version": "2.0.10"
}

0 comments on commit e5131fa

Please sign in to comment.