diff options
author | Joas Schilling <coding@schilljs.com> | 2023-02-03 09:52:37 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-02-03 09:52:37 +0100 |
commit | bf7fe04c4b238f7c20dd3bb54c2f8df13cc0f6b8 (patch) | |
tree | b33282a145a2a2d490859ea9750db2dfb4d4f152 /lib/private/App | |
parent | c610d0d99b7ed6999dea78d532a9c6c8552cafff (diff) | |
download | nextcloud-server-bf7fe04c4b238f7c20dd3bb54c2f8df13cc0f6b8.tar.gz nextcloud-server-bf7fe04c4b238f7c20dd3bb54c2f8df13cc0f6b8.zip |
fix(appinfo): navigation type is optional
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/App')
-rw-r--r-- | lib/private/App/InfoParser.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/App/InfoParser.php b/lib/private/App/InfoParser.php index 79a88b46236..c0f69e615bd 100644 --- a/lib/private/App/InfoParser.php +++ b/lib/private/App/InfoParser.php @@ -226,7 +226,8 @@ class InfoParser { */ private function isNavigationItem($data): bool { // Allow settings navigation items with no route entry - if ($data['type'] === 'settings') { + $type = $data['type'] ?? 'link'; + if ($type === 'settings') { return isset($data['name']); } return isset($data['name'], $data['route']); |