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 e7ab8a9 commit 0b2beedCopy full SHA for 0b2beed
src/Session/CacheSessionHandler.php
@@ -27,7 +27,7 @@ public function __construct(
27
public function read(string $sessionId): string|false
28
{
29
$session = $this->cache->get($sessionId, false);
30
- if ($session === false) {
+ if ($session === false || !isset($this->sessionIndex[$sessionId])) {
31
return false;
32
}
33
0 commit comments