Skip to content

Commit

Permalink
Remove order by
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Sep 1, 2023
1 parent 20c41c5 commit e49622a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frigate/http.py
Expand Up @@ -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()
)

Expand Down

0 comments on commit e49622a

Please sign in to comment.