Skip to content

Commit ff3b1de

Browse files
committed
Merge branch '7.1' into 7.2
* 7.1: [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 c555d3a + 56c6bc6 commit ff3b1de

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
@@ -85,7 +85,8 @@ public function authenticate(RequestEvent $event): void
8585
}
8686

8787
$request = $event->getRequest();
88-
$session = !$request->attributes->getBoolean('_stateless') && $request->hasPreviousSession() ? $request->getSession() : null;
88+
$session = $request->hasPreviousSession() ? $request->getSession() : null;
89+
8990

9091
$request->attributes->set('_security_firewall_run', $this->sessionKey);
9192

0 commit comments

Comments
 (0)