From 088790925e2b0be284eba0961378bd2a24846a77 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 5 Jan 2023 06:51:03 -0700 Subject: [PATCH] Fix Other Stats Access Too --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 8b461fd36..f1b00fbb0 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -761,7 +761,7 @@ def version(): @bp.route("/stats") def stats(): - stats = stats_snapshot(current_app.frigate_config, current_app.stats_tracking) + stats = stats_snapshot(current_app.frigate_config, current_app.stats_tracking, []) return jsonify(stats)