Update UI will still load if no updates are available

This commit is contained in:
Mark McDowall 2015-02-09 17:11:28 -08:00
parent db4eadac40
commit 8bf1d512c2
1 changed files with 13 additions and 10 deletions

View File

@ -22,19 +22,22 @@ namespace NzbDrone.Api.Update
.OrderByDescending(u => u.Version)
.InjectTo<List<UpdateResource>>();
var first = resources.First();
first.Latest = true;
if (first.Version > BuildInfo.Version)
if (resources.Any())
{
first.Installable = true;
}
var first = resources.First();
first.Latest = true;
var installed = resources.SingleOrDefault(r => r.Version == BuildInfo.Version);
if (first.Version > BuildInfo.Version)
{
first.Installable = true;
}
if (installed != null)
{
installed.Installed = true;
var installed = resources.SingleOrDefault(r => r.Version == BuildInfo.Version);
if (installed != null)
{
installed.Installed = true;
}
}
return resources;