Removed blackhole downloading from IndexerProviderBase.

ConfigProvider returns defaults from SabHost and SabPort.
This commit is contained in:
Mark McDowall
2011-05-17 17:19:05 -07:00
parent c0b7ebef4b
commit 58b19b6f10
2 changed files with 7 additions and 24 deletions

View File

@@ -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); }
}