From c6eb08b3d316b994a1e1613bb4d243323f17805a Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 5 Nov 2023 04:20:11 -0700 Subject: [PATCH] fix --- docker/main/rootfs/usr/local/go2rtc/create_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/main/rootfs/usr/local/go2rtc/create_config.py b/docker/main/rootfs/usr/local/go2rtc/create_config.py index 7be440842..b6e40aa61 100644 --- a/docker/main/rootfs/usr/local/go2rtc/create_config.py +++ b/docker/main/rootfs/usr/local/go2rtc/create_config.py @@ -59,7 +59,7 @@ elif go2rtc_config["log"].get("format") is None: go2rtc_config["log"]["format"] = "text" # ensure there is a default webrtc config -if not go2rtc_config.get("webrtc", {}).get("candidates", []): +if not go2rtc_config.get("webrtc"): go2rtc_config["webrtc"] = {} # go2rtc should listen on 5000 tcp & udp by default