From 4c47501687a1a8b15ea72d3841b7fb7e48f4dc3b Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sun, 14 Mar 2021 14:27:33 -0700 Subject: [PATCH] Fix pms_image_proxy with http images --- plexpy/webserve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/webserve.py b/plexpy/webserve.py index f0fe2bdf..d1c0ce97 100644 --- a/plexpy/webserve.py +++ b/plexpy/webserve.py @@ -4665,7 +4665,7 @@ class WebInterface(object): else: img = '/library/metadata/{}/thumb'.format(rating_key) - if img: + if img and not img.startswith('http'): parts = 5 if img.startswith('/playlists'): parts -= 1