mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix errors
This commit is contained in:
parent
af85505a99
commit
6c8a95fabb
2 changed files with 3 additions and 3 deletions
|
@ -163,9 +163,9 @@ def deleteItem():
|
|||
embycursor.close()
|
||||
|
||||
try:
|
||||
embyid = item[0]
|
||||
itemId = item[0]
|
||||
except TypeError:
|
||||
log("Unknown embyId, unable to proceed.", 1)
|
||||
log("Unknown itemId, unable to proceed.", 1)
|
||||
return
|
||||
|
||||
if settings('skipContextMenu') != "true":
|
||||
|
|
|
@ -222,7 +222,7 @@ def getSongTags(file):
|
|||
|
||||
except Exception as e:
|
||||
#file in use ?
|
||||
log("Exception in getSongTags", str(e),0)
|
||||
log("Exception in getSongTags %s" % e,0)
|
||||
rating = None
|
||||
|
||||
#remove tempfile if needed....
|
||||
|
|
Loading…
Reference in a new issue