mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Removed blackhole downloading from IndexerProviderBase.
ConfigProvider returns defaults from SabHost and SabPort.
This commit is contained in:
@@ -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); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user