Merge pull request #843 from mcarlton00/omega-reset

Don't reset videoversiontype table
This commit is contained in:
Odd Stråbø 2024-03-29 14:12:20 +01:00 committed by GitHub
commit badcdbe08d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -255,7 +255,8 @@ def reset_kodi():
for table in videodb.cursor.fetchall(): for table in videodb.cursor.fetchall():
name = table[0] name = table[0]
if name != 'version': # These tables are populated by Kodi and we shouldn't wipe them
if name not in ['version', 'videoversiontype']:
videodb.cursor.execute("DELETE FROM " + name) videodb.cursor.execute("DELETE FROM " + name)
if settings('enableMusic.bool') or dialog("yesno", "{jellyfin}", translate(33162)): if settings('enableMusic.bool') or dialog("yesno", "{jellyfin}", translate(33162)):