Fix Other Stats Access Too

This commit is contained in:
Nicolas Mowen 2023-01-05 06:51:03 -07:00 committed by GitHub
parent ba5cffac55
commit 088790925e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)