Skip to content

Commit

Permalink
Add a missing addon_name placeholder to the SkyConnect config flow (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed May 8, 2024
1 parent fe9e5e4 commit ac9b8cc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ async def _async_set_addon_config(
_LOGGER.error(err)
raise AbortFlow(
"addon_set_config_failed",
description_placeholders=self._get_translation_placeholders(),
description_placeholders={
**self._get_translation_placeholders(),
"addon_name": addon_manager.addon_name,
},
) from err

async def _async_get_addon_info(self, addon_manager: AddonManager) -> AddonInfo:
Expand Down

0 comments on commit ac9b8cc

Please sign in to comment.