From 9dcdd06b6cc07c92b97cb04ad0770ee2e859acd9 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 8 Dec 2013 22:23:47 -0800 Subject: [PATCH] Default category is now empty for nzbget --- src/NzbDrone.Core/Configuration/ConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 373385aa2..4a4bda1f3 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -210,7 +210,7 @@ namespace NzbDrone.Core.Configuration public String NzbgetTvCategory { - get { return GetValue("NzbgetTvCategory", "nzbget"); } + get { return GetValue("NzbgetTvCategory", ""); } set { SetValue("NzbgetTvCategory", value); } }