Skip to content

Commit 56c6bc6

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: [Serializer] Remove redundant @internal tags from traceable classes Fix conversion of partitioned cookies in the PSR-7 bridge [Validator] added Polish translation for units 116-119 Revert stateless check [Console] Fix side-effects from running bash completions skip transient Redis integration tests on AppVeyor
2 parents 19f07b6 + 6b5ee0a commit 56c6bc6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firewall/ContextListener.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ public function authenticate(RequestEvent $event): void
8787
}
8888

8989
$request = $event->getRequest();
90-
$session = !$request->attributes->getBoolean('_stateless') && $request->hasPreviousSession() ? $request->getSession() : null;
90+
$session = $request->hasPreviousSession() ? $request->getSession() : null;
91+
9192

9293
$request->attributes->set('_security_firewall_run', $this->sessionKey);
9394

0 commit comments

Comments
 (0)