try to speed up the initial login

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-05-03 15:29:19 +02:00
parent 844382d220
commit 0e09bb0d12
2 changed files with 9 additions and 2 deletions

View file

@ -490,6 +490,10 @@ class DockerActionManager
}
public function isAnyUpdateAvailable() : bool {
// return early if instance is not installed
if (!$this->configurationManager->wasStartButtonClicked()) {
return false;
}
$id = 'nextcloud-aio-apache';
if ($this->isContainerUpdateAvailable($id) !== "") {