mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Removed blackhole downloading from IndexerProviderBase.
ConfigProvider returns defaults from SabHost and SabPort.
This commit is contained in:
parent
c0b7ebef4b
commit
58b19b6f10
2 changed files with 7 additions and 24 deletions
|
@ -127,14 +127,14 @@ namespace NzbDrone.Core.Providers.Core
|
|||
|
||||
public virtual String SabHost
|
||||
{
|
||||
get { return GetValue("SabHost"); }
|
||||
get { return GetValue("SabHost", "localhost", true); }
|
||||
|
||||
set { SetValue("SabHost", value); }
|
||||
}
|
||||
|
||||
public virtual int SabPort
|
||||
{
|
||||
get { return GetValueInt("SabPort"); }
|
||||
get { return GetValueInt("SabPort", 8080); }
|
||||
|
||||
set { SetValue("SabPort", value); }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue