Merge pull request #1923 from thsrite/main
This commit is contained in:
commit
148984ad0e
@ -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 self.begin_season is None and meta.begin_season is not None:
|
||||||
self.end_season = meta.end_season
|
self.begin_season = meta.begin_season
|
||||||
self.total_season = meta.total_season
|
if self.end_season is None and meta.end_season is not None:
|
||||||
|
self.end_season = meta.end_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
|
if (self.type == MediaType.TV
|
||||||
and not self.begin_episode):
|
and not self.begin_episode):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user