Changelog will only show updates with notable changes

This commit is contained in:
Mark McDowall
2013-09-30 14:31:03 -07:00
parent 5f93cbc83b
commit ea5549d736
5 changed files with 23 additions and 5 deletions
@@ -34,10 +34,9 @@ namespace NzbDrone.Core.Update
{
var restClient = new RestClient(Services.RootUrl);
var request = new RestRequest("/v1/update/{branch}/all");
var request = new RestRequest("/v1/update/{branch}/changes");
request.AddUrlSegment("branch", branch);
request.AddParameter("limit", 5);
var updates = restClient.ExecuteAndValidate<List<UpdatePackage>>(request);