Merge pull request #12746 from nextcloud/backport/12688/stable15
[stable15] Fix cannot set 0 as value on files_external through OCC command
This commit is contained in:
commit
44acc9db88
|
@ -74,7 +74,7 @@ class Config extends Base {
|
|||
}
|
||||
|
||||
$value = $input->getArgument('value');
|
||||
if ($value) {
|
||||
if ($value !== null) {
|
||||
$this->setOption($mount, $key, $value, $output);
|
||||
} else {
|
||||
$this->getOption($mount, $key, $output);
|
||||
|
|
Loading…
Reference in New Issue