change how the install status works, fixes infinite loop

This commit is contained in:
Shannon
2019-01-16 00:54:25 +11:00
parent 709df804e5
commit db2a003444
2 changed files with 2 additions and 1 deletions

View File

@@ -171,7 +171,7 @@
},
installError)
.then(function (pack) {
vm.installState.status = labels.installStateRestarting;
vm.installState.status = labels.installStateInstalling;
vm.installState.progress = "75";
return packageResource.installData(pack);
},

View File

@@ -453,6 +453,7 @@ namespace Umbraco.Web.Search
foreach (var item in paged)
if (int.TryParse(item.Id, out var contentId))
DeleteIndexForEntity(contentId, false);
page++;
}
}
}