diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 0579d7c7e..89f542670 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -74,14 +74,14 @@ namespace NzbDrone.Core.Configuration public String SabHost { - get { return GetValue("SabHost"); } + get { return GetValue("SabHost", "localhost"); } set { SetValue("SabHost", value); } } public int SabPort { - get { return GetValueInt("SabPort"); } + get { return GetValueInt("SabPort", 8080); } set { SetValue("SabPort", value); } }