mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 23:42:37 -07:00
Fix typo when importing session_history table names
This commit is contained in:
parent
b8f8d45807
commit
39eb657012
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ def import_tautulli_db(database=None, method=None, backup=False):
|
|||
insert_columns = ', '.join(import_columns)
|
||||
|
||||
table_columns[table_name] = insert_columns
|
||||
if table == 'session_history':
|
||||
if table_name == 'session_history':
|
||||
session_history_columns = import_columns
|
||||
|
||||
# Insert the data with ignore instead of replace to be safe
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue