1
mirror of https://github.com/home-assistant/core synced 2024-09-28 03:04:04 +02:00

Fix Huawei LTE error message on service call without URL and routers (#30250)

This commit is contained in:
Ville Skyttä 2019-12-28 13:55:45 +02:00 committed by Martin Hjelmare
parent 59fee12b45
commit e4cda9ae0b

View File

@ -439,6 +439,9 @@ async def async_setup(hass: HomeAssistantType, config) -> bool:
routers = hass.data[DOMAIN].routers
if url:
router = routers.get(url)
elif not routers:
_LOGGER.error("%s: no routers configured", service.service)
return
elif len(routers) == 1:
router = next(iter(routers.values()))
else: