Skip to content
Snippets Groups Projects
Commit 5de29570 authored by André Noack's avatar André Noack
Browse files

Resolve #5089 "System kaputt wenn CACHE_IS_SESSION_STORAGE=true"

Closes #5089

Merge request !3803
parent 5df75382
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ class CacheSessionHandler implements
public function read(string $id): string|false
{
$cache_key = self::CACHE_KEY_PREFIX . '/' . $id;
return $this->cache->read($cache_key);
return $this->cache->read($cache_key) ?: '';
}
public function write(string $id, string $data): bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment