Merge pull request #17201 from nextcloud/fix/tiny_authentication_bug_mostly_affecting_french_people
Use the actual password to update the tokens
This commit is contained in:
commit
3a9a4f648f
|
@ -59,7 +59,7 @@ class CreateSessionTokenCommand extends ALoginCommand {
|
|||
);
|
||||
$this->userSession->updateTokens(
|
||||
$loginData->getUser()->getUID(),
|
||||
$loginData->getUsername()
|
||||
$loginData->getPassword()
|
||||
);
|
||||
|
||||
return $this->processNextOrFinishSuccessfully($loginData);
|
||||
|
|
|
@ -76,7 +76,7 @@ class CreateSessionTokenCommandTest extends ALoginCommandTest {
|
|||
->method('updateTokens')
|
||||
->with(
|
||||
$this->username,
|
||||
$this->username
|
||||
$this->password
|
||||
);
|
||||
|
||||
$result = $this->cmd->process($data);
|
||||
|
@ -109,7 +109,7 @@ class CreateSessionTokenCommandTest extends ALoginCommandTest {
|
|||
->method('updateTokens')
|
||||
->with(
|
||||
$this->username,
|
||||
$this->username
|
||||
$this->password
|
||||
);
|
||||
|
||||
$result = $this->cmd->process($data);
|
||||
|
|
Loading…
Reference in New Issue