From 7bb97fc319ee7abaee409ca5f1494c61f92e8a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joda=20Sto=CC=88=C3=9Fer?= Date: Tue, 6 Jan 2026 02:26:31 +0100 Subject: [PATCH] fix(NavigationManager): Remove break to return all defaultEntryIds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise only the first entry id is returned, breaking loading the value for the "Global Default App" option Signed-off-by: Joda Stößer --- lib/private/NavigationManager.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/private/NavigationManager.php b/lib/private/NavigationManager.php index 9887c59ae724d..15c7782b0037a 100644 --- a/lib/private/NavigationManager.php +++ b/lib/private/NavigationManager.php @@ -473,7 +473,6 @@ public function getDefaultEntryIds(bool $withFallbacks = true): array { foreach ($storedIds as $id) { if (in_array($id, $entryIds, true)) { $ids[] = $id; - break; } } return array_filter($ids);