This commit is contained in:
thsrite 2024-04-19 11:49:03 +08:00
parent c14e529c91
commit dd8804ef3e

View File

@ -551,11 +551,11 @@ class MetaBase(object):
# 季
if (self.type == MediaType.TV
and not self.begin_season):
if not self.begin_season and meta.begin_season:
if self.begin_season is None and meta.begin_season is not None:
self.begin_season = meta.begin_season
if not self.end_season and meta.end_season:
if self.end_season is None and meta.end_season is not None:
self.end_season = meta.end_season
if not self.total_season and meta.total_season:
if self.total_season is None and meta.total_season is not None:
self.total_season = meta.total_season
# 开始集
if (self.type == MediaType.TV