From 686bbdc16b4733222e50a9374c3c708d2107e646 Mon Sep 17 00:00:00 2001 From: thsrite Date: Wed, 23 Apr 2025 11:44:44 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix=20=E6=B7=BB=E5=8A=A0=E8=AE=A2=E9=98=85?= =?UTF-8?q?=E6=88=90=E5=8A=9F=E6=B6=88=E6=81=AF=E5=A2=9E=E5=8A=A0=E6=BC=94?= =?UTF-8?q?=E5=91=98=E5=90=8D=E7=A7=B0=E3=80=81=E7=AE=80=E4=BB=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/chain/subscribe.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/chain/subscribe.py b/app/chain/subscribe.py index 62abde17..0d224e34 100644 --- a/app/chain/subscribe.py +++ b/app/chain/subscribe.py @@ -233,6 +233,10 @@ class SubscribeChain(ChainBase, metaclass=Singleton): text = f"评分:{mediainfo.vote_average},来自用户:{username}" else: text = f"评分:{mediainfo.vote_average}" + if mediainfo.actors: + text += f"\n演员:{'、 '.join([actor['name'] for actor in mediainfo.actors])}" + if mediainfo.overview: + text += f"\n简介:{mediainfo.overview}" if mediainfo.type == MediaType.TV: link = settings.MP_DOMAIN('#/subscribe/tv?tab=mysub') else: From c3584e838ef118daba43587bbbd5a27d42083821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=AF=E5=A4=A7=E4=BE=A0?= Date: Sun, 27 Apr 2025 00:17:29 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E5=BC=80=E5=90=AF=E5=85=A8=E5=B1=80?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E7=BC=93=E5=AD=98=E5=90=8E=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=9D=A5=E8=87=AABing=E7=9A=84=E5=A3=81?= =?UTF-8?q?=E7=BA=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/core/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/core/config.py b/app/core/config.py index a578a61c..938d103b 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -238,6 +238,7 @@ class ConfigModel(BaseModel): SECURITY_IMAGE_DOMAINS: List[str] = Field( default_factory=lambda: ["image.tmdb.org", "static-mdb.v.geilijiasu.com", + "bing.com", "doubanio.com", "lain.bgm.tv", "raw.githubusercontent.com",