From: Marcel van der Veldt Date: Mon, 27 Mar 2023 07:57:44 +0000 (+0200) Subject: fix typos X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=7153c2686a6184078469b180ae9f835232348438;p=music-assistant-server.git fix typos --- diff --git a/music_assistant/server/controllers/metadata.py b/music_assistant/server/controllers/metadata.py index b24e84cd..7527f04f 100755 --- a/music_assistant/server/controllers/metadata.py +++ b/music_assistant/server/controllers/metadata.py @@ -277,9 +277,9 @@ class MetaDataController: if img.provider != "url" and resolve: # return imageproxy url for images that need to be resolved # the original path is double encoded - encoded_url = urllib.parse.quote(urllib.parse.quote(img.url)) + encoded_url = urllib.parse.quote(urllib.parse.quote(img.path)) return f"{self.mass.webserver.base_url}/imageproxy?path={encoded_url}" - return img.url + return img.path # retry with track's album if media_item.media_type == MediaType.TRACK and media_item.album: