mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(lexicon): only filter out null default
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
parent
33c4fe504d
commit
f32d865716
1 changed files with 1 additions and 1 deletions
|
|
@ -1136,7 +1136,7 @@ class AppConfig implements IAppConfig {
|
|||
]);
|
||||
}
|
||||
|
||||
return array_filter($details);
|
||||
return array_filter($details, static fn($v): bool => ($v !== null));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue