mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-30 03:28:31 -07:00
Implemented info modal on History page.
Updated Datatables. Updated to match current PlexWatchWeb styling. Some code clean-up.
This commit is contained in:
parent
32c4379e7f
commit
f0864d3531
78 changed files with 8661 additions and 58207 deletions
|
@ -91,6 +91,15 @@ class DBConnection:
|
|||
|
||||
return sqlResults
|
||||
|
||||
def select_single(self, query, args=None):
|
||||
|
||||
sqlResult = self.action(query, args).fetchone()[0]
|
||||
|
||||
if sqlResult is None or sqlResult == "":
|
||||
return ""
|
||||
|
||||
return sqlResult
|
||||
|
||||
def get_history_table_name(self):
|
||||
|
||||
if plexpy.CONFIG.GROUPING_GLOBAL_HISTORY:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue