mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 21:21:15 -07:00
Fix header on user IP modal
Return more user data to the info screen. Some other backend changes
This commit is contained in:
parent
2d822c8468
commit
4830cc7d68
6 changed files with 63 additions and 32 deletions
|
@ -59,6 +59,8 @@ class DataTables(object):
|
|||
if join_type:
|
||||
if join_type.upper() == 'LEFT OUTER JOIN':
|
||||
join = 'LEFT OUTER JOIN %s ON %s = %s' % (join_table, join_evals[0], join_evals[1])
|
||||
elif join_type.upper() == 'JOIN' or join_type.upper() == 'INNER JOIN':
|
||||
join = 'INNER JOIN %s ON %s = %s' % (join_table, join_evals[0], join_evals[1])
|
||||
else:
|
||||
join = ''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue