From 8219a8014be6b8c0dd52c80f195de4a652bc4293 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 25 Nov 2017 15:40:12 -0500 Subject: [PATCH] Fixed: Use Update branch specified in settings instead of always develop --- src/NzbDrone.Core/Update/RecentUpdateProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Update/RecentUpdateProvider.cs b/src/NzbDrone.Core/Update/RecentUpdateProvider.cs index 0fb20e4f4..73bc38119 100644 --- a/src/NzbDrone.Core/Update/RecentUpdateProvider.cs +++ b/src/NzbDrone.Core/Update/RecentUpdateProvider.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Core.Configuration; @@ -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); } }