Skip to content

Commit

Permalink
Merge pull request #56 from NicholaPunkt/bugfix/requesthandler-sendRe…
Browse files Browse the repository at this point in the history
…sponse

BUGFIX: Add missing response in sendResponse call
  • Loading branch information
kitsunet authored Aug 24, 2020
2 parents a716fb8 + 775cf27 commit 4f6cdfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Core/RequestHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function handleRequest()
$this->resolveDependencies();
$this->baseComponentChain->handle($this->componentContext);

$this->sendResponse();
$this->sendResponse($this->baseComponentChain->getResponse());
$this->bootstrap->shutdown('Runtime');
$this->exit->__invoke();
}
Expand Down

0 comments on commit 4f6cdfb

Please sign in to comment.