diff --git a/custom_components/bhyve/__init__.py b/custom_components/bhyve/__init__.py index 9c10c92..711ca26 100644 --- a/custom_components/bhyve/__init__.py +++ b/custom_components/bhyve/__init__.py @@ -121,7 +121,7 @@ async def async_update_callback(data): "programs": programs, } - hass.config_entries.async_setup_platforms(entry, PLATFORMS) + await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) entry.async_on_unload(entry.add_update_listener(update_listener)) hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, client.stop()) diff --git a/custom_components/bhyve/manifest.json b/custom_components/bhyve/manifest.json index e4f4e35..cf8e102 100644 --- a/custom_components/bhyve/manifest.json +++ b/custom_components/bhyve/manifest.json @@ -1,6 +1,6 @@ { "domain": "bhyve", - "version": "3.1.1", + "version": "3.1.2", "name": "Orbit B-hyve", "config_flow": true, "documentation": "https://github.com/sebr/bhyve-home-assistant/blob/master/README.md",