From 9339b98d1e3a219cfd2198ce75c4155515c5cc56 Mon Sep 17 00:00:00 2001 From: kayone Date: Sat, 30 Nov 2013 19:27:33 -0800 Subject: [PATCH] removed default for Sab --- src/NzbDrone.Core/Configuration/ConfigService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 89f542670..0579d7c7e 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", "localhost"); } + get { return GetValue("SabHost"); } set { SetValue("SabHost", value); } } public int SabPort { - get { return GetValueInt("SabPort", 8080); } + get { return GetValueInt("SabPort"); } set { SetValue("SabPort", value); } }