Skip to content
Snippets Groups Projects
Commit 371a4d01 authored by Joas Schilling's avatar Joas Schilling
Browse files

Fix no value

parent 5d84876e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment