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