Merged in hotfix/MAPG-65-fix-php-error (pull request #50)

MAPG-65 create variable so it can be a reference
This commit is contained in:
Bence Pőcze 2020-05-26 19:44:25 +00:00
commit 9582c93ec1

View File

@ -24,7 +24,8 @@ class PositionController implements ControllerInterface
public function run(): ViewBase
{
if (!isset($_SESSION['state']) || $_SESSION['state']['mapId'] !== $this->mapId) {
return new JsonView(['error' => 'No valid session found!']);
$data = ['error' => 'No valid session found!'];
return new JsonView($data);
}
if (count($_SESSION['state']['rounds']) === 0) {