🔀 Merge branch 'trunk'

This commit is contained in:
Philipp Stracker 2025-02-18 12:35:26 +01:00
commit a13b8c03ff
No known key found for this signature in database
6 changed files with 112 additions and 34 deletions

View file

@ -120,7 +120,10 @@ class Settings implements ContainerInterface {
* @return bool
*/
public function has( string $id ) {
if ( $this->settings_map_helper->has_mapped_key( $id ) ) {
if (
$this->settings_map_helper->has_mapped_key( $id )
&& ! is_null( $this->settings_map_helper->mapped_value( $id ) )
) {
return true;
}