Fix no value
This commit is contained in:
parent
5d84876ecd
commit
371a4d014a
1 changed files with 2 additions and 2 deletions
|
@ -122,8 +122,8 @@ class ListConfigs extends Base {
|
|||
continue;
|
||||
}
|
||||
|
||||
$value = $this->systemConfig->getValue($key, new \Exception('Not set'));
|
||||
if (!($value instanceof \Exception)) {
|
||||
$value = $this->systemConfig->getValue($key, serialize(null));
|
||||
if ($value !== 'N;') {
|
||||
$configs[$key] = $value;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue