mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 06:08:00 -04:00
Fixed history stats time frame not working properly
This commit is contained in:
parent
aebc7ba19c
commit
4358790fa7
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue