From e49622a33bf68e1060f9637150bd81f638fad711 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Fri, 1 Sep 2023 07:33:03 -0600 Subject: [PATCH] Remove order by --- frigate/http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index d89033e3a..f401e21e6 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1636,7 +1636,6 @@ def export_recording(camera_name: str, start_time, end_time): | ((start_time > Recordings.start_time) & (end_time < Recordings.end_time)) ) .where(Recordings.camera == camera_name) - .order_by(Recordings.start_time.asc()) .count() )