From 6ed7a8b4717cd61fae58b7390e81064c9ff03a7a Mon Sep 17 00:00:00 2001 From: Lars Date: Fri, 2 Oct 2015 14:35:31 +0200 Subject: [PATCH] rTorrent: Url Path displayed by default, misc --- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs | 2 +- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs index 2f04229e7..b43092da0 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs @@ -145,7 +145,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent else if (torrent.IsActive) item.Status = DownloadItemStatus.Downloading; else if (!torrent.IsActive) item.Status = DownloadItemStatus.Paused; - // Since we do not know the user's intent, do not let Sonarr to remove the torrent + // No stop ratio data is present, so do not delete item.IsReadOnly = true; items.Add(item); diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs index 5983c3e40..81715246c 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs @@ -37,7 +37,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent [FieldDefinition(1, Label = "Port", Type = FieldType.Textbox)] public int Port { get; set; } - [FieldDefinition(2, Label = "Url Base", Type = FieldType.Textbox, Advanced = true, HelpText = "Adds a suffix the rpc url, see http://[host]:[port]/[urlBase], by default this should be RPC2")] + [FieldDefinition(2, Label = "Url Path", Type = FieldType.Textbox, HelpText = "Path to the XMLRPC endpoint, see http(s)://[host]:[port]/[urlPath]. When using ruTorrent this usually is RPC2 or (path to ruTorrent)/plugins/rpc/rpc.php")] public string UrlBase { get; set; } [FieldDefinition(3, Label = "Use SSL", Type = FieldType.Checkbox)]