mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #12688 from nextcloud/files_external-occ-0
Fix cannot set 0 as value on files_external through OCC command
This commit is contained in:
commit
73fa3e1757
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue