Skip importing version_info table

This commit is contained in:
JonnyWong16 2021-03-29 00:22:53 -07:00
parent 5ca5f24a66
commit 98ad8693b0
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -145,7 +145,7 @@ def import_tautulli_db(database=None, method=None, backup=False):
'ORDER BY name')
for table in tables:
table_name = table['name']
if table_name == 'sessions':
if table_name == 'sessions' or table_name == 'version_info':
# Skip temporary sessions table
continue