fix 年份匹配

This commit is contained in:
jxxghp
2023-06-11 18:42:23 +08:00
parent 1b64ff0469
commit db4b9fcef8
4 changed files with 31 additions and 5 deletions

View File

@ -386,7 +386,7 @@ class DownloadChain(ChainBase):
# 所有剧集均缺失
for season, episodes in mediainfo.seasons.items():
# 全季不存在
if meta.get_season_list() \
if meta.begin_season \
and season not in meta.get_season_list():
continue
__append_no_exists(_season=season, _episodes=[], _total=len(episodes), _start=min(episodes))
@ -394,7 +394,7 @@ class DownloadChain(ChainBase):
else:
# 存在一些,检查缺失的季集
for season, episodes in mediainfo.seasons.items():
if meta.get_season_list() \
if meta.begin_season \
and season not in meta.get_season_list():
continue
exist_seasons = exists_tvs.get("seasons")