From a566f479881a0a2fad82255f29d1451a64fb5cf1 Mon Sep 17 00:00:00 2001 From: Roger Far Date: Wed, 29 Jan 2025 19:10:14 -0700 Subject: [PATCH] Set the download client based on the torrent instead of hardcoded when upload a torrent from the web GUI. --- server/RdtClient.Service/Services/Torrents.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/RdtClient.Service/Services/Torrents.cs b/server/RdtClient.Service/Services/Torrents.cs index 28a45b2..97d93bc 100644 --- a/server/RdtClient.Service/Services/Torrents.cs +++ b/server/RdtClient.Service/Services/Torrents.cs @@ -671,7 +671,7 @@ public class Torrents( infoHash, fileOrMagnetContents, isFile, - Settings.Get.DownloadClient.Client, + torrent.DownloadClient, torrent); await UpdateTorrentClientData(newTorrent);