parent
dd51766d3d
commit
5788f3c7ea
1 changed files with 3 additions and 3 deletions
|
@ -234,7 +234,7 @@ class Embydb_Functions():
|
||||||
|
|
||||||
return items
|
return items
|
||||||
|
|
||||||
def getPlexId(self, kodiid, mediatype):
|
def getPlexId(self, kodiid):
|
||||||
"""
|
"""
|
||||||
Returns the Plex ID usind the Kodiid. Result:
|
Returns the Plex ID usind the Kodiid. Result:
|
||||||
(Plex Id, Parent's Plex Id)
|
(Plex Id, Parent's Plex Id)
|
||||||
|
@ -242,10 +242,10 @@ class Embydb_Functions():
|
||||||
query = ' '.join((
|
query = ' '.join((
|
||||||
"SELECT emby_id, parent_id",
|
"SELECT emby_id, parent_id",
|
||||||
"FROM emby",
|
"FROM emby",
|
||||||
"WHERE kodi_id = ? AND media_type = ?"
|
"WHERE kodi_id = ?"
|
||||||
))
|
))
|
||||||
try:
|
try:
|
||||||
self.embycursor.execute(query, (kodiid, mediatype))
|
self.embycursor.execute(query, (kodiid))
|
||||||
item = self.embycursor.fetchone()
|
item = self.embycursor.fetchone()
|
||||||
return item
|
return item
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in a new issue