fix(Navigation): ensure NavManager is inited when adding an entry

otherwise custom order cannot be applied

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2024-03-13 16:05:14 +01:00
parent 4bda299541
commit 1f2d267443
No known key found for this signature in database
GPG key ID: 7424F1874854DF23

View file

@ -94,6 +94,7 @@ class NavigationManager implements INavigationManager {
$this->closureEntries[] = $entry;
return;
}
$this->init();
$id = $entry['id'];
@ -236,10 +237,6 @@ class NavigationManager implements INavigationManager {
]);
}
if ($this->appManager === 'null') {
return;
}
$this->defaultApp = $this->appManager->getDefaultAppForUser($this->userSession->getUser(), false);
if ($this->userSession->isLoggedIn()) {