mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-15 01:32:57 -07:00
Another ambiguous column name fix
This commit is contained in:
parent
626e7fdf82
commit
060c549259
2 changed files with 3 additions and 3 deletions
|
@ -580,9 +580,9 @@ class WebInterface(object):
|
|||
|
||||
custom_where=[]
|
||||
if user_id:
|
||||
custom_where = [['user_id', user_id]]
|
||||
custom_where = [['session_history.user_id', user_id]]
|
||||
elif user:
|
||||
custom_where = [['user', user]]
|
||||
custom_where = [['session_history.user', user]]
|
||||
if 'rating_key' in kwargs:
|
||||
rating_key = kwargs.get('rating_key', "")
|
||||
custom_where = [['session_history.rating_key', rating_key]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue