fix 动漫一级分类判断条件

This commit is contained in:
thsrite
2023-08-28 12:50:47 +08:00
parent b7e9e8ee21
commit 7717afab69
5 changed files with 15 additions and 6 deletions

View File

@ -549,14 +549,13 @@ class MediaInfo:
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"]["media_type"] = self.type.value if self.type else None
dicts["tmdb_info"] = self.tmdb_info if self.tmdb_info else None
return dicts
def clear(self):
"""
去除多余数据,减小体积
"""
self.tmdb_info = {}
self.douban_info = {}
self.seasons = {}
self.genres = []