mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Fix history table sorting by play duration
This commit is contained in:
parent
2921c1fc30
commit
b0921b5f4a
7 changed files with 9 additions and 8 deletions
|
@ -308,7 +308,8 @@ class DataFactory(object):
|
|||
'date': item['date'],
|
||||
'started': item['started'],
|
||||
'stopped': item['stopped'],
|
||||
'duration': item['play_duration'],
|
||||
'duration': item['play_duration'], # Keep for backwards compatibility
|
||||
'play_duration': item['play_duration'],
|
||||
'paused_counter': item['paused_counter'],
|
||||
'user_id': item['user_id'],
|
||||
'user': item['user'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue