diff --git a/frigate/http.py b/frigate/http.py index b6142717f..ed47c8661 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -590,9 +590,10 @@ def timeline(): .where(reduce(operator.and_, clauses)) .order_by(Timeline.timestamp.asc()) .limit(limit) + .dicts() ) - return jsonify([model_to_dict(t) for t in timeline]) + return jsonify([t for t in timeline]) @bp.route("//