From 90bea26aea5aadb581748e4bbe835721d61c35d7 Mon Sep 17 00:00:00 2001 From: Rosanne Nicolai Date: Wed, 18 Jun 2025 13:03:03 +0200 Subject: [PATCH] Adjust the check for null, to check on empty. Sometimes the value is false. --- Helper/Data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/Data.php b/Helper/Data.php index 28252bb..b13dcee 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -254,7 +254,7 @@ public function collectModuleConfig(): array */ public function processConfigValue(mixed $value, array $config): mixed { - if ($value === null) { + if (empty($value)) { return null; }