Add a missing addon_name placeholder to the SkyConnect config flow (#117089)

This commit is contained in:
puddly 2024-05-08 17:57:50 -04:00 committed by GitHub
parent fe9e5e4382
commit ac9b8cce37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,10 @@ class BaseFirmwareInstallFlow(ConfigEntryBaseFlow, ABC):
_LOGGER.error(err) _LOGGER.error(err)
raise AbortFlow( raise AbortFlow(
"addon_set_config_failed", "addon_set_config_failed",
description_placeholders=self._get_translation_placeholders(), description_placeholders={
**self._get_translation_placeholders(),
"addon_name": addon_manager.addon_name,
},
) from err ) from err
async def _async_get_addon_info(self, addon_manager: AddonManager) -> AddonInfo: async def _async_get_addon_info(self, addon_manager: AddonManager) -> AddonInfo: