mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix typo
This commit is contained in:
parent
3007f8fdac
commit
163881e79f
1 changed files with 3 additions and 3 deletions
|
@ -899,7 +899,7 @@ class Kodidb_Functions():
|
||||||
"AND media_type = ?",
|
"AND media_type = ?",
|
||||||
"AND tag_id = ?"
|
"AND tag_id = ?"
|
||||||
))
|
))
|
||||||
cursor.execute(query, (kodiid, mediatype, tag_id))
|
cursor.execute(query, (kodiid, mediatype, tag_id,))
|
||||||
else:
|
else:
|
||||||
# Kodi Helix
|
# Kodi Helix
|
||||||
query = ' '.join((
|
query = ' '.join((
|
||||||
|
@ -919,10 +919,10 @@ class Kodidb_Functions():
|
||||||
|
|
||||||
"DELETE FROM taglinks",
|
"DELETE FROM taglinks",
|
||||||
"WHERE idMedia = ?",
|
"WHERE idMedia = ?",
|
||||||
"AND media_type ?",
|
"AND media_type = ?",
|
||||||
"AND idTag = ?"
|
"AND idTag = ?"
|
||||||
))
|
))
|
||||||
cursor.execute(query, (kodiid, mediatype, tag_id))
|
cursor.execute(query, (kodiid, mediatype, tag_id,))
|
||||||
|
|
||||||
def createBoxset(self, boxsetname):
|
def createBoxset(self, boxsetname):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue