diff options
author | morpheus65535 <[email protected]> | 2022-04-29 22:23:50 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-29 22:23:50 -0400 |
commit | 4358790fa7cb4ac130ac7501bfad34c753cbec98 (patch) | |
tree | 14cab293ec02c9a2d9083afefd837c0e136d2337 | |
parent | aebc7ba19c76b0ff45a21b96ed4f92fbb91c00b5 (diff) | |
download | bazarr-4358790fa7cb4ac130ac7501bfad34c753cbec98.tar.gz bazarr-4358790fa7cb4ac130ac7501bfad34c753cbec98.zip |
Fixed history stats time frame not working properly
-rw-r--r-- | bazarr/api/history/stats.py | 2 |
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' |