From 9660c3f7eee6e2c102acee851a09d4e0d9fdbe95 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 7 Mar 2014 23:49:18 -0800 Subject: [PATCH] Branch name will be returned as lowercase --- src/NzbDrone.Core/Configuration/ConfigFileProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index fffab7637..f82da6eb1 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -130,7 +130,7 @@ public bool AuthenticationEnabled public string Branch { - get { return GetValue("Branch", "master"); } + get { return GetValue("Branch", "master").ToLowerInvariant(); } } public string Username