mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 16:57:53 +00:00
Fix removed exception InternalServerError in ista EcoTrend integration (#120089)
This commit is contained in:
parent
901317ec39
commit
905c1c5700
@ -109,7 +109,7 @@ class IstaConfigFlow(ConfigFlow, domain=DOMAIN):
|
||||
)
|
||||
try:
|
||||
await self.hass.async_add_executor_job(ista.login)
|
||||
except (ServerError, InternalServerError):
|
||||
except ServerError:
|
||||
errors["base"] = "cannot_connect"
|
||||
except (LoginError, KeycloakError):
|
||||
errors["base"] = "invalid_auth"
|
||||
|
Loading…
x
Reference in New Issue
Block a user