From 9ee367d9e9b071d03f1c8165938fccaf9c8f4f44 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 6 Jan 2023 05:51:58 -0700 Subject: [PATCH] Fix Other Stats Access Too (#4917) --- 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)