fix #1154
This commit is contained in:
parent
5d6ba83fc5
commit
126276c727
@ -283,6 +283,10 @@ class DownloadChain(ChainBase):
|
|||||||
if not file_meta.begin_episode \
|
if not file_meta.begin_episode \
|
||||||
or file_meta.begin_episode not in episodes:
|
or file_meta.begin_episode not in episodes:
|
||||||
continue
|
continue
|
||||||
|
# 只处理视频格式
|
||||||
|
if not Path(file).suffix \
|
||||||
|
or Path(file).suffix not in settings.RMT_MEDIAEXT:
|
||||||
|
continue
|
||||||
files_to_add.append({
|
files_to_add.append({
|
||||||
"download_hash": _hash,
|
"download_hash": _hash,
|
||||||
"downloader": settings.DOWNLOADER,
|
"downloader": settings.DOWNLOADER,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user