From 8e6d94129b69c0018d6310adde9972476a7ee8b3 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Sun, 8 Jan 2017 11:38:37 +0100 Subject: [PATCH] Fix keyError for url-encoding --- resources/lib/artwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/artwork.py b/resources/lib/artwork.py index db7aa97e..08105837 100644 --- a/resources/lib/artwork.py +++ b/resources/lib/artwork.py @@ -281,7 +281,7 @@ class Artwork(): def cacheTexture(self, url): # Cache a single image url to the texture cache 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): # Kodi conversion table