mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 14:10:52 -07:00
Fix ambiguous column name in Live TV session grouping
This commit is contained in:
parent
7de82d87f7
commit
0cbde5a2f5
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ class ActivityProcessor(object):
|
|||
query = 'SELECT session_history.id, session_history_metadata.guid, session_history.reference_id ' \
|
||||
'FROM session_history ' \
|
||||
'JOIN session_history_metadata ON session_history.id == session_history_metadata.id ' \
|
||||
'WHERE session_history.user_id = ? ORDER BY id DESC LIMIT 1 '
|
||||
'WHERE session_history.user_id = ? ORDER BY session_history.id DESC LIMIT 1 '
|
||||
|
||||
args = [session['user_id']]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue