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:
Morris Jobke 2018-11-30 09:58:50 +01:00 committed by GitHub
commit 44acc9db88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);