Skip to content

Commit

Permalink
Fix KeyError in config flow of Bring integration (#122136)
Browse files Browse the repository at this point in the history
  • Loading branch information
tr4nt0r authored and frenck committed Jul 19, 2024
1 parent d0d2fd7 commit 1ef4332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/bring/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async def async_step_user(
):
self._abort_if_unique_id_configured()
return self.async_create_entry(
title=self.info["name"] or user_input[CONF_EMAIL], data=user_input
title=self.info.get("name") or user_input[CONF_EMAIL], data=user_input
)

return self.async_show_form(
Expand Down

0 comments on commit 1ef4332

Please sign in to comment.