修复 自动辅种中跳过检验后不会检查种子完整度直接做种

This commit is contained in:
HankunYu
2024-08-24 20:52:25 +01:00
parent e1c884bcdf
commit a90b49a6a1
2 changed files with 6 additions and 2 deletions

View File

@@ -957,9 +957,12 @@ class IYUUAutoSeed(_PluginBase):
if self._skipverify:
# 跳过校验
logger.info(f"{download_id} 跳过校验,请自行检查...")
# qbittorrent 添加种子并跳过检验后会标记为完成不会自动做种,需要手动开始
# qbittorrent 添加种子并跳过检验后会标记为完成不会自动做种
# 加入校验种子列表,但是跳过校验
if downloader == "qbittorrent":
downloader_obj.start_torrents(ids=[download_id])
if not self._recheck_torrents.get(downloader):
self._recheck_torrents[downloader] = []
self._recheck_torrents[downloader].append(download_id)
else:
# 追加校验任务
logger.info(f"添加校验检查任务:{download_id} ...")