summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2022-04-29 22:23:50 -0400
committerGitHub <[email protected]>2022-04-29 22:23:50 -0400
commit4358790fa7cb4ac130ac7501bfad34c753cbec98 (patch)
tree14cab293ec02c9a2d9083afefd837c0e136d2337
parentaebc7ba19c76b0ff45a21b96ed4f92fbb91c00b5 (diff)
downloadbazarr-4358790fa7cb4ac130ac7501bfad34c753cbec98.tar.gz
bazarr-4358790fa7cb4ac130ac7501bfad34c753cbec98.zip
Fixed history stats time frame not working properly
-rw-r--r--bazarr/api/history/stats.py2
1 files changed, 1 insertions, 1 deletions
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'