mirror of https://github.com/lidarr/Lidarr
rTorrent: Url Path displayed by default, misc
This commit is contained in:
parent
7426efd423
commit
6ed7a8b471
|
@ -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);
|
||||
|
|
|
@ -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)]
|
||||
|
|
Loading…
Reference in New Issue