fix #1921
This commit is contained in:
@ -551,9 +551,12 @@ class MetaBase(object):
|
|||||||
# 季
|
# 季
|
||||||
if (self.type == MediaType.TV
|
if (self.type == MediaType.TV
|
||||||
and not self.begin_season):
|
and not self.begin_season):
|
||||||
self.begin_season = meta.begin_season
|
if not self.begin_season and meta.begin_season:
|
||||||
self.end_season = meta.end_season
|
self.begin_season = meta.begin_season
|
||||||
self.total_season = meta.total_season
|
if not self.end_season and meta.end_season:
|
||||||
|
self.end_season = meta.end_season
|
||||||
|
if not self.total_season and meta.total_season:
|
||||||
|
self.total_season = meta.total_season
|
||||||
# 开始集
|
# 开始集
|
||||||
if (self.type == MediaType.TV
|
if (self.type == MediaType.TV
|
||||||
and not self.begin_episode):
|
and not self.begin_episode):
|
||||||
|
Reference in New Issue
Block a user