From 4358790fa7cb4ac130ac7501bfad34c753cbec98 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Fri, 29 Apr 2022 22:23:50 -0400 Subject: [PATCH] Fixed history stats time frame not working properly --- bazarr/api/history/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/api/history/stats.py b/bazarr/api/history/stats.py index b9651399d..7ed789307 100644 --- a/bazarr/api/history/stats.py +++ b/bazarr/api/history/stats.py @@ -18,7 +18,7 @@ from ..utils import authenticate class HistoryStats(Resource): @authenticate def get(self): - timeframe = request.args.get('timeframe') or 'month' + timeframe = request.args.get('timeFrame') or 'month' action = request.args.get('action') or 'All' provider = request.args.get('provider') or 'All' language = request.args.get('language') or 'All'