From ad7b6a8ec205287a364064dd1a24a4a5a4aed380 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Sun, 8 Jan 2017 20:09:44 +0100 Subject: [PATCH] Remove hacky way to change branch --- src/NzbDrone.Core/Update/RecentUpdateProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Update/RecentUpdateProvider.cs b/src/NzbDrone.Core/Update/RecentUpdateProvider.cs index 0fb20e4f4..6fcaf42c2 100644 --- a/src/NzbDrone.Core/Update/RecentUpdateProvider.cs +++ b/src/NzbDrone.Core/Update/RecentUpdateProvider.cs @@ -23,7 +23,7 @@ namespace NzbDrone.Core.Update public List GetRecentUpdatePackages() { - var branch = "develop";//_configFileProvider.Branch; + var branch = _configFileProvider.Branch; return _updatePackageProvider.GetRecentUpdates(branch, BuildInfo.Version); } }