Skip to content

Commit ea08d86

Browse files
authored
Update Session.php
Fix validator to hashedValidator in token
1 parent 7855d91 commit ea08d86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Authentication/Authenticators/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ private function refreshRememberMeToken(stdClass $token): void
870870
// Update validator.
871871
$validator = bin2hex(random_bytes(20));
872872

873-
$token->validator = $this->hashValidator($validator);
873+
$token->hashedValidator = $this->hashValidator($validator);
874874
$token->expires = $this->calcExpires();
875875

876876
$this->rememberModel->updateRememberValidator($token);

0 commit comments

Comments
 (0)