custom_components/webrtc/__init__.py, custom_components/webrtc/utils.py

This commit is contained in:
Home Assistant Version Control
2026-07-29 17:01:37 +00:00
parent 0bca647dff
commit 7e2cc04b0f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
if not binary:
return False
hass.data[DOMAIN] = server = Server(binary)
hass.data[DOMAIN] = server = Server(binary, hass.config.config_dir)
server.start()
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, server.stop)