diff --git a/server/RdtClient.Web/Controllers/QBittorrentController.cs b/server/RdtClient.Web/Controllers/QBittorrentController.cs index 4cc3a77..a5e48bc 100644 --- a/server/RdtClient.Web/Controllers/QBittorrentController.cs +++ b/server/RdtClient.Web/Controllers/QBittorrentController.cs @@ -222,7 +222,7 @@ namespace RdtClient.Web.Controllers foreach (var url in urls) { - await _qBittorrent.TorrentsAdd(url.Trim(), true, true); + await _qBittorrent.TorrentsAdd(url.Trim(), true, false); } return Ok(); @@ -242,7 +242,7 @@ namespace RdtClient.Web.Controllers await file.CopyToAsync(target); var fileBytes = target.ToArray(); - await _qBittorrent.TorrentsAddFile(fileBytes, true, true); + await _qBittorrent.TorrentsAddFile(fileBytes, true, false); } }