Browse Source

remove array filter

main
ghost 9 months ago
parent
commit
2ead440488
  1. 2
      src/controller/room.php

2
src/controller/room.php

@ -160,7 +160,7 @@ class Room @@ -160,7 +160,7 @@ class Room
public function posts(string $namespace): ?string
{
// Get all records by namespace
if (!$records = (array) $this->_records($namespace))
if (!$records = $this->_records($namespace))
{
return null;
}

Loading…
Cancel
Save