From 975becb22e5699b64f034ea6c3107376f46f2d80 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 12 Jan 2023 17:33:03 +0100 Subject: [PATCH] normalize userid in user:setting Signed-off-by: Robin Appelman --- core/Command/User/Setting.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/core/Command/User/Setting.php b/core/Command/User/Setting.php index 6e7c15375d1..fac5c3c976c 100644 --- a/core/Command/User/Setting.php +++ b/core/Command/User/Setting.php @@ -113,9 +113,14 @@ class Setting extends Base { } protected function checkInput(InputInterface $input) { - $uid = $input->getArgument('uid'); - if (!$input->getOption('ignore-missing-user') && !$this->userManager->userExists($uid)) { - throw new \InvalidArgumentException('The user "' . $uid . '" does not exist.'); + if (!$input->getOption('ignore-missing-user')) { + $uid = $input->getArgument('uid'); + $user = $this->userManager->get($uid); + if (!$user) { + throw new \InvalidArgumentException('The user "' . $uid . '" does not exist.'); + } + // normalize uid + $input->setArgument('uid', $user->getUID()); } if ($input->getArgument('key') === '' && $input->hasParameterOption('--default-value')) {