Skip to content

Commit

Permalink
Fixed history stats time frame not working properly
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Apr 30, 2022
1 parent aebc7ba commit 4358790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/api/history/stats.py
Expand Up @@ -18,7 +18,7 @@
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'
Expand Down

0 comments on commit 4358790

Please sign in to comment.