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

This reverts commit a90b49a6a1.
This commit is contained in:
Alex Liu
2024-08-27 10:57:58 +08:00
parent b8085690da
commit ed74a5be77
2 changed files with 2 additions and 6 deletions

View File

@@ -288,7 +288,6 @@
"author": "jxxghp",
"level": 2,
"history": {
"v1.9.5": "修复跳过检验后不会检查种子完整度直接做种",
"v1.9.4": "修复qbittorrent 添加种子并跳过检验后会标记为完成不会自动做种",
"v1.9.3": "修复Monika因缺少rsskey种子下载失败的问题",
"v1.9.2": "适配馒头使用API下载种子",

View File

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