diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-11-09 16:41:21 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-11-14 20:04:48 +0100 |
commit | 927e7fcf67e4e1216e1551160919cd018f12b963 (patch) | |
tree | aaa1e1ddda2919a26986fc7495730aa160b1ca00 /lib/public/App/IAppManager.php | |
parent | 54a3012a111a5370a7e072d8ab5ff54c5707af60 (diff) | |
download | nextcloud-server-927e7fcf67e4e1216e1551160919cd018f12b963.tar.gz nextcloud-server-927e7fcf67e4e1216e1551160919cd018f12b963.zip |
fix(AppManager): Ensure that app manager can handle empty app keys on the navigation entries
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/public/App/IAppManager.php')
-rw-r--r-- | lib/public/App/IAppManager.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index 70d137a2cce..4667cf13f0f 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -250,6 +250,8 @@ interface IAppManager { * * @param ?IUser $user User to query default app for * @param bool $withFallbacks Include fallback values if no default app was configured manually + * Before falling back to predefined default apps, + * the user defined app order is considered and the first app would be used as the fallback. * * @since 25.0.6 * @since 28.0.0 Added optional $withFallbacks parameter |