Add default hass location (#7549)

This commit is contained in:
Nicolas Mowen 2023-09-01 06:06:22 -06:00 committed by GitHub
parent 77cb469430
commit 737681aa4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,10 @@ if go2rtc_config.get("api") is None:
elif go2rtc_config["api"].get("origin") is None:
go2rtc_config["api"]["origin"] = "*"
# Need to set default location for HA config
if go2rtc_config.get("hass") is None:
go2rtc_config["hass"] = {"config": "/config"}
# we want to ensure that logs are easy to read
if go2rtc_config.get("log") is None:
go2rtc_config["log"] = {"format": "text"}