From f2a40e1ec39ee6cad294c5979313050d8616ab85 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sun, 17 Mar 2024 15:59:21 +0800 Subject: [PATCH] =?UTF-8?q?fix=20themoviedb=E5=AD=A3=E4=B8=8D=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/core/context.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/core/context.py b/app/core/context.py index 993f5c53..b07a9ece 100644 --- a/app/core/context.py +++ b/app/core/context.py @@ -615,11 +615,12 @@ class MediaInfo: """ 返回字典 """ - self.clear() dicts = asdict(self) dicts["type"] = self.type.value if self.type else None dicts["detail_link"] = self.detail_link dicts["title_year"] = self.title_year + dicts["tmdb_info"] = None + dicts["douban_info"] = None return dicts def clear(self):