mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-17 13:46:14 +00:00
Hotfix (#71)
* Fix typos * Indicate unicode dict * Fix artistid * Attempt to fix encoding
This commit is contained in:
parent
ba22e26c06
commit
85d054f33a
4 changed files with 12 additions and 8 deletions
|
@ -746,8 +746,8 @@ class KodiItems(object):
|
|||
tag_id = self.cursor.fetchone()[0] + 1
|
||||
|
||||
query = "INSERT INTO tag(idTag, strTag) values(?, ?)"
|
||||
self.cursor.execute(query, (tag_id, name))
|
||||
log.debug("Create idTag: %s name: %s", tag_id, name)
|
||||
self.cursor.execute(query, (tag_id, tag))
|
||||
log.debug("Create idTag: %s name: %s", tag_id, tag)
|
||||
|
||||
finally:
|
||||
# Assign tag to item
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue