Correctly handle users with numeric user ids
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
922c2c64b5
commit
03a6b2b49a
|
@ -23,6 +23,7 @@
|
|||
|
||||
namespace OC\Core\Command;
|
||||
|
||||
use OC\Core\Command\User\ListCommand;
|
||||
use Stecman\Component\Symfony\Console\BashCompletion\Completion\CompletionAwareInterface;
|
||||
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
|
@ -76,7 +77,7 @@ class Base extends Command implements CompletionAwareInterface {
|
|||
$this->writeArrayInOutputFormat($input, $output, $item, ' ' . $prefix);
|
||||
continue;
|
||||
}
|
||||
if (!is_int($key)) {
|
||||
if (!is_int($key) || ListCommand::class === get_class($this)) {
|
||||
$value = $this->valueToString($item);
|
||||
if (!is_null($value)) {
|
||||
$output->writeln($prefix . $key . ': ' . $value);
|
||||
|
|
Loading…
Reference in New Issue