1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fixed multiple things in the Update procedure

This commit is contained in:
Leonardo Galli
2017-01-08 20:06:34 +01:00
parent 03cc3a1ad2
commit 906ecfb6a1
4 changed files with 6 additions and 5 deletions
@@ -23,7 +23,7 @@ namespace NzbDrone.Core.Update
public List<UpdatePackage> GetRecentUpdatePackages()
{
var branch = _configFileProvider.Branch;
var branch = "develop";//_configFileProvider.Branch;
return _updatePackageProvider.GetRecentUpdates(branch, BuildInfo.Version);
}
}