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
45b75bd86a
commit
3007f8fdac
1 changed files with 3 additions and 3 deletions
|
@ -210,7 +210,7 @@ class Kodidb_Functions():
|
||||||
VALUES (?, ?)
|
VALUES (?, ?)
|
||||||
'''
|
'''
|
||||||
)
|
)
|
||||||
cursor.execute(query, (idCountry, itemid))
|
cursor.execute(query, (idCountry, kodiid))
|
||||||
|
|
||||||
def addPeople(self, kodiid, people, mediatype):
|
def addPeople(self, kodiid, people, mediatype):
|
||||||
|
|
||||||
|
@ -778,7 +778,7 @@ class Kodidb_Functions():
|
||||||
))
|
))
|
||||||
cursor.execute(query, (tag,))
|
cursor.execute(query, (tag,))
|
||||||
try:
|
try:
|
||||||
idTag = cursor.fetchone()[0]
|
tag_id = cursor.fetchone()[0]
|
||||||
|
|
||||||
except TypeError:
|
except TypeError:
|
||||||
# Create the tag
|
# Create the tag
|
||||||
|
@ -795,7 +795,7 @@ class Kodidb_Functions():
|
||||||
VALUES (?, ?, ?)
|
VALUES (?, ?, ?)
|
||||||
'''
|
'''
|
||||||
)
|
)
|
||||||
cursor.execute(query, (idTag, kodiid, mediatype))
|
cursor.execute(query, (tag_id, kodiid, mediatype))
|
||||||
|
|
||||||
def createTag(self, name):
|
def createTag(self, name):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue