add missed namespace

This commit is contained in:
ghost 2024-01-27 12:51:49 +02:00
parent 5d052c2d3a
commit 8c0115e78d

View File

@ -950,7 +950,7 @@ class Room
private function _records(string $namespace): array
{
// Check for cache
if ($result = $this->_memory->get([__METHOD__]))
if ($result = $this->_memory->get([__METHOD__, $namespace]))
{
return $result;
}
@ -963,7 +963,8 @@ class Room
// Save to cache
$this->_memory->set(
[
__METHOD__
__METHOD__,
$namespace
],
$result
);