mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-11 05:11:13 +03:00
Bug Fixes (#20825)
* Correctly sort summary responses * Consider JinaV2 as a complex model * Subscribe to record updates in camera watchdog * Cleanup score showing * No need to sort review summary * Add tests for recording summary * Don't break existing format * Sort event summary by day
This commit is contained in:
@@ -912,7 +912,7 @@ def events_summary(
|
||||
"count": int(g.count or 0),
|
||||
}
|
||||
|
||||
return JSONResponse(content=list(grouped.values()))
|
||||
return JSONResponse(content=sorted(grouped.values(), key=lambda x: x["day"]))
|
||||
|
||||
|
||||
@router.get(
|
||||
|
||||
Reference in New Issue
Block a user