From 8d218443bfc42c90aac7d6ec8c5253cef356101c Mon Sep 17 00:00:00 2001 From: Vxrtrauter <101264710+Vxrtrauter@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:35:49 +0100 Subject: [PATCH] fix: wrong download paths in libtorrent logic --- src/core/network/libtorrent_int.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/network/libtorrent_int.py b/src/core/network/libtorrent_int.py index 7985087..2d04184 100644 --- a/src/core/network/libtorrent_int.py +++ b/src/core/network/libtorrent_int.py @@ -89,7 +89,7 @@ def add_download(magnet_uri): try: params = lt.parse_magnet_uri(magnet_uri) - params.save_path = "." + params.save_path = state.download_path handle = state.dl_session.add_torrent(params)