diff --git a/web/src/pages/Live.tsx b/web/src/pages/Live.tsx index f4f0cf80f..90343dd44 100644 --- a/web/src/pages/Live.tsx +++ b/web/src/pages/Live.tsx @@ -37,8 +37,15 @@ function Live() { ); }, [config]); const restreamEnabled = useMemo(() => { + if (!config) { + return false; + } + + if (camera == "birdseye") { + return config.birdseye.restream; + } + return ( - config && cameraConfig && Object.keys(config.go2rtc.streams || {}).includes( cameraConfig.live.stream_name