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:
Joda Stößer 2026-01-06 02:26:31 +01:00 committed by Andy Scherzinger
parent c1e362b167
commit f225667b21

View file

@ -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);