From 8929ba19d27f2c4fc4a1d617e7a108ddf6b9d05f Mon Sep 17 00:00:00 2001 From: Cucumberrbob <128094686+Cucumberrbob@users.noreply.github.com> Date: Tue, 22 Apr 2025 20:12:38 +0100 Subject: [PATCH] fix: Set `HostDownloadAction` when auto-importing torrents we had a setting for it, just never used it! --- server/RdtClient.Service/Services/Torrents.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/server/RdtClient.Service/Services/Torrents.cs b/server/RdtClient.Service/Services/Torrents.cs index 96ac155..646a300 100644 --- a/server/RdtClient.Service/Services/Torrents.cs +++ b/server/RdtClient.Service/Services/Torrents.cs @@ -492,6 +492,7 @@ public class Torrents( Category = Settings.Get.Provider.Default.Category, DownloadClient = Settings.Get.DownloadClient.Client, DownloadAction = Settings.Get.Provider.Default.OnlyDownloadAvailableFiles ? TorrentDownloadAction.DownloadAvailableFiles : TorrentDownloadAction.DownloadAll, + HostDownloadAction = Settings.Get.Provider.Default.HostDownloadAction, FinishedAction = Settings.Get.Provider.Default.FinishedAction, DownloadMinSize = Settings.Get.Provider.Default.MinFileSize, IncludeRegex = Settings.Get.Provider.Default.IncludeRegex,