mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix log error
This commit is contained in:
parent
985cce074c
commit
5ac746750e
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ class WriteKodiVideoDB():
|
|||
MBitem = ReadEmbyDB().getFullItem(embyId)
|
||||
|
||||
if not MBitem:
|
||||
self.logMsg("ADD movie to Kodi library FAILED", "Item %s not found on server!" % embyId)
|
||||
self.logMsg("ADD movie to Kodi library FAILED, Item %s not found on server!" % embyId)
|
||||
return
|
||||
|
||||
# If the item already exist in the local Kodi DB we'll perform a full item update
|
||||
|
@ -280,7 +280,7 @@ class WriteKodiVideoDB():
|
|||
MBitem = ReadEmbyDB().getFullItem(embyId)
|
||||
|
||||
if not MBitem:
|
||||
self.logMsg("ADD musicvideo to Kodi library FAILED", "Item %s not found on server!" % embyId, 1)
|
||||
self.logMsg("ADD musicvideo to Kodi library FAILED, Item %s not found on server!" % embyId, 1)
|
||||
return
|
||||
|
||||
# If the item already exist in the local Kodi DB we'll perform a full item update
|
||||
|
@ -415,7 +415,7 @@ class WriteKodiVideoDB():
|
|||
MBitem = ReadEmbyDB().getFullItem(embyId)
|
||||
|
||||
if not MBitem:
|
||||
self.logMsg("ADD tvshow to Kodi library FAILED", "Item %s not found on server!" % embyId)
|
||||
self.logMsg("ADD tvshow to Kodi library FAILED, Item %s not found on server!" % embyId)
|
||||
return
|
||||
|
||||
# If the item already exist in the local Kodi DB we'll perform a full item update
|
||||
|
|
Loading…
Reference in a new issue