Fix cannot set 0 as value on files_external through OCC command
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
c8cab74404
commit
56c777f715
|
@ -74,7 +74,7 @@ class Config extends Base {
|
||||||
}
|
}
|
||||||
|
|
||||||
$value = $input->getArgument('value');
|
$value = $input->getArgument('value');
|
||||||
if ($value) {
|
if ($value !== null) {
|
||||||
$this->setOption($mount, $key, $value, $output);
|
$this->setOption($mount, $key, $value, $output);
|
||||||
} else {
|
} else {
|
||||||
$this->getOption($mount, $key, $output);
|
$this->getOption($mount, $key, $output);
|
||||||
|
|
Loading…
Reference in New Issue