mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix imageUrl
This commit is contained in:
parent
fca5f3c9f2
commit
e1f0ee7575
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue