diff --git a/frigate/output/preview.py b/frigate/output/preview.py index cdc607531..c3c37517d 100644 --- a/frigate/output/preview.py +++ b/frigate/output/preview.py @@ -244,6 +244,9 @@ class PreviewRecorder: frame_time: float, ) -> bool: """Decide if this frame should be added to PREVIEW.""" + if not self.config.record.enabled: + return False + active_objs = get_active_objects( frame_time, self.config, current_tracked_objects )