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:
Roeland Jago Douma 2019-09-18 22:52:53 +02:00 committed by GitHub
commit 3a9a4f648f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ class CreateSessionTokenCommand extends ALoginCommand {
); );
$this->userSession->updateTokens( $this->userSession->updateTokens(
$loginData->getUser()->getUID(), $loginData->getUser()->getUID(),
$loginData->getUsername() $loginData->getPassword()
); );
return $this->processNextOrFinishSuccessfully($loginData); return $this->processNextOrFinishSuccessfully($loginData);

View File

@ -76,7 +76,7 @@ class CreateSessionTokenCommandTest extends ALoginCommandTest {
->method('updateTokens') ->method('updateTokens')
->with( ->with(
$this->username, $this->username,
$this->username $this->password
); );
$result = $this->cmd->process($data); $result = $this->cmd->process($data);
@ -109,7 +109,7 @@ class CreateSessionTokenCommandTest extends ALoginCommandTest {
->method('updateTokens') ->method('updateTokens')
->with( ->with(
$this->username, $this->username,
$this->username $this->password
); );
$result = $this->cmd->process($data); $result = $this->cmd->process($data);