From e1f0ee757534237241909f62d9c259a3214c925b Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sat, 18 Apr 2015 12:11:58 -0500 Subject: [PATCH] Fix imageUrl --- resources/lib/DownloadUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/DownloadUtils.py b/resources/lib/DownloadUtils.py index b3668262..caccd109 100644 --- a/resources/lib/DownloadUtils.py +++ b/resources/lib/DownloadUtils.py @@ -136,7 +136,7 @@ class DownloadUtils(): server = self.getServer() - return "%s/mediabrowser/Items/%s/Images/%s/%s//e3ab56fe27d389446754d0fb04910a34/original/%s/%s/0" % (server, id, type, index, width, height) + return "%s/mediabrowser/Items/%s/Images/%s?MaxWidth=%s&MaxHeight=%s&Index=%s" % (server, id, type, width, height, index) def getAuthHeader(self, authenticate=True): clientInfo = ClientInformation()