From cf1542537f356e6101e19eee273a5e9eb04fccb3 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 8 Oct 2025 17:37:01 -0500 Subject: [PATCH] fix incorrect event_type for api and audio timeline entries --- frigate/timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/timeline.py b/frigate/timeline.py index 4e3c8e293..4c3d0d457 100644 --- a/frigate/timeline.py +++ b/frigate/timeline.py @@ -156,7 +156,7 @@ class TimelineProcessor(threading.Thread): event_type: str, event_data: dict[Any, Any], ) -> bool: - if event_type != "new": + if event_type != "start": return False if event_data.get("type", "api") == "audio":