Fix unexpected error thrown if instance_domain is not set (#23615)
This commit is contained in:
parent
35e9505ad5
commit
bc9548fdaf
1 changed files with 3 additions and 0 deletions
|
@ -122,6 +122,9 @@ def async_remote_ui_url(hass) -> str:
|
|||
if not async_is_logged_in(hass):
|
||||
raise CloudNotAvailable
|
||||
|
||||
if not hass.data[DOMAIN].remote.instance_domain:
|
||||
raise CloudNotAvailable
|
||||
|
||||
return "https://" + hass.data[DOMAIN].remote.instance_domain
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue