mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #36123 from nextcloud/user-settings-normalize-uid
normalize userid in user:setting
This commit is contained in:
commit
a25645648e
1 changed files with 8 additions and 3 deletions
|
|
@ -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')) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue