Merge pull request #44178 from nextcloud/fix/noid/nav-init-add

fix(Navigation): ensure NavManager is inited when adding an entry
pull/44186/head
Arthur Schiwon 3 months ago committed by GitHub
commit 10593d1847
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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()) {

Loading…
Cancel
Save