Update configs.php (#1662)

Fixes config items incorectlly set as `string` due to `'array(...)'` value passed to `gettype` instead of real array
This commit is contained in:
Kristijan
2025-01-23 18:56:10 +01:00
committed by GitHub
parent 6b43ac616d
commit 187ce9beeb
+1 -1
View File
@@ -72,7 +72,7 @@ function vsCodeGetConfigValue($value, $key, $configPaths)
$key = collect(explode('.', $key));
$key->pop();
$key = $key->implode('.');
$value = 'array(...)';
$value = [];
}
$nextKey = $keysToFind->shift();