fix transfer bug

This commit is contained in:
jxxghp
2024-09-14 13:19:51 +08:00
parent 57bad6353c
commit 8bb25afcdc
3 changed files with 7 additions and 4 deletions

View File

@@ -214,7 +214,7 @@ class QbittorrentModule(_ModuleBase, _DownloaderBase):
if content_path:
torrent_path = Path(content_path)
else:
torrent_path = torrent.get('save_path') / torrent.get('name')
torrent_path = Path(torrent.get('save_path')) / torrent.get('name')
ret_torrents.append(TransferTorrent(
title=torrent.get('name'),
path=torrent_path,