Fix keyError for url-encoding
This commit is contained in:
parent
234f5042a3
commit
8e6d94129b
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ class Artwork():
|
||||||
def cacheTexture(self, url):
|
def cacheTexture(self, url):
|
||||||
# Cache a single image url to the texture cache
|
# Cache a single image url to the texture cache
|
||||||
if url and self.enableTextureCache:
|
if url and self.enableTextureCache:
|
||||||
self.queue.put(double_urlencode(url))
|
self.queue.put(double_urlencode(tryEncode(url)))
|
||||||
|
|
||||||
def addArtwork(self, artwork, kodiId, mediaType, cursor):
|
def addArtwork(self, artwork, kodiId, mediaType, cursor):
|
||||||
# Kodi conversion table
|
# Kodi conversion table
|
||||||
|
|
Loading…
Reference in a new issue