From 71118214f94971af98579876401e1b8501fa7e1c Mon Sep 17 00:00:00 2001 From: Ardinis Date: Thu, 20 Apr 2017 11:31:04 +0200 Subject: [PATCH] reviewed --- apps/files_external/lib/Command/Config.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/files_external/lib/Command/Config.php b/apps/files_external/lib/Command/Config.php index b928f66d59..5df6f7ee65 100644 --- a/apps/files_external/lib/Command/Config.php +++ b/apps/files_external/lib/Command/Config.php @@ -91,6 +91,9 @@ class Config extends Base { } else { $value = $mount->getBackendOption($key); } + if (!is_string($value) && json_decode(json_encode($value)) === $value) { // show bools and objects correctly + $value = json_encode($value); + } $output->writeln($value); } @@ -101,6 +104,10 @@ class Config extends Base { * @param OutputInterface $output */ protected function setOption(StorageConfig $mount, $key, $value, OutputInterface $output) { + $decoded = json_decode($value, true); + if (!is_null($decoded) && json_encode($decoded) === $value) { + $value = $decoded; + } if ($key === 'mountpoint' || $key === 'mount_point') { $mount->setMountPoint($value); } else {