From 6801032f7a133891111a39d27ecf4d0e4a450d68 Mon Sep 17 00:00:00 2001 From: Akimio521 Date: Sat, 2 Nov 2024 16:18:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=81=BF=E5=85=8D=E5=9C=A8=E5=8C=BF?= =?UTF-8?q?=E5=90=8D=E7=8E=AF=E5=A2=83=E4=B8=8B=E6=9A=B4=E9=9C=B2Plex?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E4=BB=A5=E5=8F=8APlex=20Token?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/modules/plex/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/modules/plex/__init__.py b/app/modules/plex/__init__.py index 134e09d0..e265779e 100644 --- a/app/modules/plex/__init__.py +++ b/app/modules/plex/__init__.py @@ -294,7 +294,9 @@ class PlexModule(_ModuleBase, _MediaServerBase[Plex]): links = [] items: List[schemas.MediaServerPlayItem] = self.mediaserver_latest(num=count, username=username) for item in items: - link = server.get_remote_image_by_id(item_id=item.id, image_type="Backdrop") + link = server.get_remote_image_by_id(item_id=item.id, + image_type="Backdrop", + plex_url=False) if link: links.append(link)