From 16d8cc065a5eeec719897040ae7844f228729d27 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 fb0795376bbb5..4e24c72e0b9d6 100644 --- a/lib/private/NavigationManager.php +++ b/lib/private/NavigationManager.php @@ -474,7 +474,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);