Update UI will still load if no updates are available

pull/2/head
Mark McDowall 10 years ago
parent db4eadac40
commit 8bf1d512c2

@ -22,6 +22,8 @@ namespace NzbDrone.Api.Update
.OrderByDescending(u => u.Version)
.InjectTo<List<UpdateResource>>();
if (resources.Any())
{
var first = resources.First();
first.Latest = true;
@ -36,6 +38,7 @@ namespace NzbDrone.Api.Update
{
installed.Installed = true;
}
}
return resources;
}

Loading…
Cancel
Save