mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02: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