Fix missing name for ESPHome reauth dialog (#60508)

This commit is contained in:
Jesse Hills 2021-11-29 22:06:56 +13:00 committed by GitHub
parent 5e86c78c46
commit dd001cacfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,7 @@ class EsphomeFlowHandler(ConfigFlow, domain=DOMAIN):
self._port = entry.data[CONF_PORT]
self._password = entry.data[CONF_PASSWORD]
self._noise_psk = entry.data.get(CONF_NOISE_PSK)
self._name = entry.title
return await self.async_step_reauth_confirm()
async def async_step_reauth_confirm(