From 0140adf8e1711869927f1dc263e8a0b4bcc871f1 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 15 Dec 2025 07:35:50 -0700 Subject: [PATCH] Fix check for audio activity to keep a segemnt --- frigate/record/maintainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/record/maintainer.py b/frigate/record/maintainer.py index 8bfa726de..d60d7ccce 100644 --- a/frigate/record/maintainer.py +++ b/frigate/record/maintainer.py @@ -67,7 +67,7 @@ class SegmentInfo: if ( not keep and retain_mode == RetainModeEnum.motion - and (self.motion_count > 0 or self.average_dBFS > 0) + and (self.motion_count > 0 or self.average_dBFS != 0) ): keep = True