From 924f946e463f9e1b84907f3db6d45d4b7487707e Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 20 Jan 2023 19:40:55 -0700 Subject: [PATCH] Fix birdseye snapshot (#5171) --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 581635d5e..4ae4d4d95 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -870,7 +870,7 @@ def latest_frame(camera_name): response.headers["Content-Type"] = "image/jpeg" response.headers["Cache-Control"] = "no-store" return response - elif camera_name == "birdseye" and current_app.frigate_config.restream.birdseye: + elif camera_name == "birdseye" and current_app.frigate_config.birdseye.restream: frame = cv2.cvtColor( current_app.detected_frames_processor.get_current_frame(camera_name), cv2.COLOR_YUV2BGR_I420,