Revert "Revert "Cleanup Plex Companion""

This reverts commit 5788f3c7ea.
This commit is contained in:
tomkat83 2016-04-11 12:34:24 +02:00
parent 5788f3c7ea
commit 18ff3715ac

View file

@ -234,7 +234,7 @@ class Embydb_Functions():
return items
def getPlexId(self, kodiid):
def getPlexId(self, kodiid, mediatype):
"""
Returns the Plex ID usind the Kodiid. Result:
(Plex Id, Parent's Plex Id)
@ -242,10 +242,10 @@ class Embydb_Functions():
query = ' '.join((
"SELECT emby_id, parent_id",
"FROM emby",
"WHERE kodi_id = ?"
"WHERE kodi_id = ? AND media_type = ?"
))
try:
self.embycursor.execute(query, (kodiid))
self.embycursor.execute(query, (kodiid, mediatype))
item = self.embycursor.fetchone()
return item
except: