fix incorrect event_type for api and audio timeline entries

This commit is contained in:
Josh Hawkins 2025-10-08 17:37:01 -05:00
parent 123b2705b5
commit cf1542537f

View File

@ -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":