diff --git a/frigate/output.py b/frigate/output.py index 408733eee..c4fb2d1ac 100644 --- a/frigate/output.py +++ b/frigate/output.py @@ -311,6 +311,7 @@ class BirdsEyeFrameManager: return True def update(self, camera, object_count, motion_count, frame_time, frame) -> bool: + # update the last active frame for the camera self.cameras[camera]["current_frame"] = frame_time if self.camera_active(object_count, motion_count): diff --git a/web/config/handlers.js b/web/config/handlers.js index 9f5a3bcaa..7afd23109 100644 --- a/web/config/handlers.js +++ b/web/config/handlers.js @@ -20,7 +20,7 @@ export const handlers = [ detect: { width: 1280, height: 720 }, snapshots: {}, live: { height: 720 }, - ui: { dashboard: true, order: 0, birdseye: true }, + ui: { dashboard: true, order: 0 }, }, side: { name: 'side', @@ -29,7 +29,7 @@ export const handlers = [ detect: { width: 1280, height: 720 }, snapshots: {}, live: { height: 720 }, - ui: { dashboard: true, order: 1, birdseye: true }, + ui: { dashboard: true, order: 1 }, }, }, })