fix(transfer): 修复目录监控下意外删除未完成种子的问题

- 如果种子尚未下载完成,则直接返回 False
This commit is contained in:
Attente
2025-08-06 23:13:01 +08:00
parent 426e920fff
commit 1f6dc93ea3
2 changed files with 6 additions and 1 deletions

View File

@@ -253,7 +253,8 @@ class TransmissionModule(_ModuleBase, _DownloaderBase[Transmission]):
path=Path(torrent.download_dir) / torrent.name,
hash=torrent.hashString,
size=torrent.total_size,
tags=",".join(torrent.labels or [])
tags=",".join(torrent.labels or []),
progress=torrent.progress
))
finally:
torrents.clear()