mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 18:11:41 -04:00
fix(NavigationManager): Remove break to return all defaultEntryIds
Otherwise only the first entry id is returned, breaking loading the value for the "Global Default App" option Signed-off-by: Joda Stößer <git@simjo.st>
This commit is contained in:
parent
c1e362b167
commit
f225667b21
1 changed files with 0 additions and 1 deletions
|
|
@ -474,7 +474,6 @@ class NavigationManager implements INavigationManager {
|
|||
foreach ($storedIds as $id) {
|
||||
if (in_array($id, $entryIds, true)) {
|
||||
$ids[] = $id;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return array_filter($ids);
|
||||
|
|
|
|||
Loading…
Reference in a new issue