mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-05 07:27:15 +08:00
fix(download): 修复手动下载时下载器选择问题
- 在手动下载模式下,始终使用用户选择的下载器
This commit is contained in:
@@ -44,6 +44,8 @@ def download(
|
|||||||
# 种子信息
|
# 种子信息
|
||||||
torrentinfo = TorrentInfo()
|
torrentinfo = TorrentInfo()
|
||||||
torrentinfo.from_dict(torrent_in.dict())
|
torrentinfo.from_dict(torrent_in.dict())
|
||||||
|
# 手动下载始终使用选择的下载器
|
||||||
|
torrentinfo.site_downloader = downloader
|
||||||
# 上下文
|
# 上下文
|
||||||
context = Context(
|
context = Context(
|
||||||
meta_info=metainfo,
|
meta_info=metainfo,
|
||||||
@@ -51,7 +53,7 @@ def download(
|
|||||||
torrent_info=torrentinfo
|
torrent_info=torrentinfo
|
||||||
)
|
)
|
||||||
did = DownloadChain().download_single(context=context, username=current_user.name,
|
did = DownloadChain().download_single(context=context, username=current_user.name,
|
||||||
downloader=downloader, save_path=save_path, source="Manual")
|
save_path=save_path, source="Manual")
|
||||||
if not did:
|
if not did:
|
||||||
return schemas.Response(success=False, message="任务添加失败")
|
return schemas.Response(success=False, message="任务添加失败")
|
||||||
return schemas.Response(success=True, data={
|
return schemas.Response(success=True, data={
|
||||||
|
|||||||
Reference in New Issue
Block a user