We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa533fb commit c35c00aCopy full SHA for c35c00a
packages/sprinkle-account/app/src/Authenticate/Authenticator.php
@@ -347,7 +347,7 @@ protected function loginRememberedUser(): ?UserInterface
347
if ($loginResult->isSuccess()) {
348
// Update in session
349
$key = strval($this->config->get('session.keys.current_user_id'));
350
- $this->session[$key] = intval($loginResult->getCredential());
+ $this->session->set($key, intval($loginResult->getCredential()));
351
// There is a chance that an attacker has stolen the login token,
352
// so we store the fact that the user was logged in via RememberMe (instead of login form)
353
$this->viaRemember = true;
0 commit comments