mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 17:43:49 -07:00
Connect to SAB over SSL (optional)
New: Ability to connect to SABnzbd over SSL
This commit is contained in:
parent
89c2ff6107
commit
938b5f1ae3
5 changed files with 35 additions and 3 deletions
|
@ -128,6 +128,13 @@ namespace NzbDrone.Core.Configuration
|
|||
set { SetValue("SabOlderTvPriority", value); }
|
||||
}
|
||||
|
||||
public bool SabUseSsl
|
||||
{
|
||||
get { return GetValueBoolean("SabUseSsl", false); }
|
||||
|
||||
set { SetValue("SabUseSsl", value); }
|
||||
}
|
||||
|
||||
public String DownloadedEpisodesFolder
|
||||
{
|
||||
get { return GetValue(ConfigKey.DownloadedEpisodesFolder.ToString()); }
|
||||
|
@ -162,7 +169,7 @@ namespace NzbDrone.Core.Configuration
|
|||
|
||||
public DownloadClientType DownloadClient
|
||||
{
|
||||
get { return GetValueEnum("DownloadClient", DownloadClientType.Sabnzbd); }
|
||||
get { return GetValueEnum("DownloadClient", DownloadClientType.Blackhole); }
|
||||
|
||||
set { SetValue("DownloadClient", value); }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue