mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix typo in path
This commit is contained in:
parent
8f56c9d20f
commit
6937834b91
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ class Artwork(object):
|
|||
log.info("Database is locked. Skip deletion process.")
|
||||
|
||||
else: # Delete thumbnail as well as the entry
|
||||
thumbnails = xbmc.translatePath("special://thumbnails/%s", cached_url).decode('utf-8')
|
||||
thumbnails = xbmc.translatePath("special://thumbnails/%s" % cached_url).decode('utf-8')
|
||||
log.info("Deleting cached thumbnail: %s", thumbnails)
|
||||
xbmcvfs.delete(thumbnails)
|
||||
|
||||
|
|
Loading…
Reference in a new issue