mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Fix unexpected error thrown if instance_domain is not set (#23615)
This commit is contained in:
committed by
Paulus Schoutsen
parent
0fe21f2015
commit
d1e44e35df
@@ -122,6 +122,9 @@ def async_remote_ui_url(hass) -> str:
|
|||||||
if not async_is_logged_in(hass):
|
if not async_is_logged_in(hass):
|
||||||
raise CloudNotAvailable
|
raise CloudNotAvailable
|
||||||
|
|
||||||
|
if not hass.data[DOMAIN].remote.instance_domain:
|
||||||
|
raise CloudNotAvailable
|
||||||
|
|
||||||
return "https://" + hass.data[DOMAIN].remote.instance_domain
|
return "https://" + hass.data[DOMAIN].remote.instance_domain
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user