Bugfix supersearch

This commit is contained in:
Xenomporio 2022-07-02 14:43:24 +02:00
parent 40280fedda
commit 7afba4a3fa

View File

@ -30,7 +30,7 @@ final class ResultCollection implements JsonSerializableAlias
*/ */
public function isEmpty() public function isEmpty()
{ {
return count($this->groups) === 0; return (empty($this->groups)?0:(count($this->groups) === 0));
} }
/** /**