cancel installation on pending plugins

This commit is contained in:
Eduard Heimbuch
2019-09-28 11:44:39 +02:00
parent e1dd393cce
commit 333579ef2a
6 changed files with 17 additions and 10 deletions

View File

@@ -67,7 +67,7 @@ public class InstalledPluginResource {
})
@TypeHint(CollectionDto.class)
public Response updateAll(@QueryParam("restart") boolean restartAfterInstallation) {
pluginManager.updateAll(restartAfterInstallation);
pluginManager.updateAll();
return Response.ok().build();
}