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):