Fix Huawei LTE error message on service call without URL and routers (#30250)
This commit is contained in:
parent
59fee12b45
commit
e4cda9ae0b
1 changed files with 3 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue