Fix for tv show is not found on server

When processing episodes, if the show failed to be added.
This commit is contained in:
angelblue05 2015-10-04 06:40:39 -05:00
parent 7d9fe89806
commit 3605a48933
1 changed files with 6 additions and 2 deletions

View File

@ -436,9 +436,13 @@ class LibrarySync(threading.Thread):
allKodiEpisodeIds = list()
allEmbyEpisodeIds = list()
#get the kodi parent id
# Get the kodi parent id
cursor.execute("SELECT kodi_id FROM emby WHERE emby_id=?",(showId,))
kodiShowId = cursor.fetchone()[0]
try:
kodiShowId = cursor.fetchone()[0]
except:
self.logMsg("Unable to find show itemId:%s" % showId, 1)
return
allEmbyEpisodes = ReadEmbyDB().getEpisodes(showId)
allKodiEpisodes = ReadKodiDB().getKodiEpisodes(connection, cursor, kodiShowId)