on all emby DB connection create check the emby tables

This commit is contained in:
shaun 2017-01-15 10:46:14 +11:00
parent 33cb101930
commit ce46fb7015
2 changed files with 10 additions and 16 deletions

View file

@ -139,7 +139,6 @@ def verify_emby_database(cursor):
# Create the tables for the emby database # Create the tables for the emby database
# emby, view, version # emby, view, version
if window('emby_db_checked') != "true":
log.info("Verifying emby DB") log.info("Verifying emby DB")
cursor.execute( cursor.execute(
"""CREATE TABLE IF NOT EXISTS emby( """CREATE TABLE IF NOT EXISTS emby(
@ -150,7 +149,6 @@ def verify_emby_database(cursor):
"""CREATE TABLE IF NOT EXISTS view( """CREATE TABLE IF NOT EXISTS view(
view_id TEXT UNIQUE, view_name TEXT, media_type TEXT, kodi_tagid INTEGER)""") view_id TEXT UNIQUE, view_name TEXT, media_type TEXT, kodi_tagid INTEGER)""")
cursor.execute("CREATE TABLE IF NOT EXISTS version(idVersion TEXT)") cursor.execute("CREATE TABLE IF NOT EXISTS version(idVersion TEXT)")
window('emby_db_checked', value="true")
def db_reset(): def db_reset():

View file

@ -86,10 +86,6 @@ class Service(object):
def service_entry_point(self): def service_entry_point(self):
# reset the internal emby tables check status
# we need to check at least once per run or on switching profiles
window('emby_db_checked', value="false")
# Important: Threads depending on abortRequest will not trigger # Important: Threads depending on abortRequest will not trigger
# if profile switch happens more than once. # if profile switch happens more than once.
self.monitor = kodimonitor.KodiMonitor() self.monitor = kodimonitor.KodiMonitor()