diff --git a/custom_components/hacs/__init__.py b/custom_components/hacs/__init__.py index 16e330e2f8d..921214274f4 100644 --- a/custom_components/hacs/__init__.py +++ b/custom_components/hacs/__init__.py @@ -90,8 +90,8 @@ async def async_setup(hass, config): # pylint: disable=unused-argument # Add to sidepanel # TODO: Remove this check when minimum HA version is > 0.94 - if parse_version(HAVERSION) < parse_version('0.94.0'): - hass.components.frontend.async_register_built_in_panel( + if parse_version(HAVERSION) < parse_version('0.93.9'): + await hass.components.frontend.async_register_built_in_panel( "iframe", IFRAME["title"], IFRAME["icon"], @@ -100,7 +100,7 @@ async def async_setup(hass, config): # pylint: disable=unused-argument require_admin=IFRAME["require_admin"], ) else: - await hass.components.frontend.async_register_built_in_panel( + hass.components.frontend.async_register_built_in_panel( "iframe", IFRAME["title"], IFRAME["icon"], diff --git a/custom_components/hacs/const.py b/custom_components/hacs/const.py index f0318b319a5..0d78f690947 100644 --- a/custom_components/hacs/const.py +++ b/custom_components/hacs/const.py @@ -1,5 +1,5 @@ """Constants for HACS""" -VERSION = "0.4.0" +VERSION = "0.4.1" NAME_LONG = "HACS (Home Assistant Community Store)" NAME_SHORT = "HACS" STORAGE_VERSION = "1"