From e3d47cddaa4c4e45ce47b73cec3ee0fe47d50d93 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 30 Nov 2013 22:28:04 -0800 Subject: [PATCH] Revert "removed default for Sab" This reverts commit 9339b98d1e3a219cfd2198ce75c4155515c5cc56. --- 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 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); } }