mirror of
https://github.com/Radarr/Radarr
synced 2026-01-19 22:13:25 +01:00
Fixed: Use Update branch specified in settings instead of always develop
This commit is contained in:
parent
9dcf90d241
commit
8219a8014b
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Common.EnvironmentInfo;
|
||||
using NzbDrone.Core.Configuration;
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ public RecentUpdateProvider(IConfigFileProvider configFileProvider,
|
|||
|
||||
public List<UpdatePackage> GetRecentUpdatePackages()
|
||||
{
|
||||
var branch = "develop";//_configFileProvider.Branch;
|
||||
var branch = _configFileProvider.Branch;
|
||||
return _updatePackageProvider.GetRecentUpdates(branch, BuildInfo.Version);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue