Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix content length bug
  • Loading branch information
mpociot committed Feb 27, 2019
1 parent f26f892 commit 1c2b89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpApi/Controllers/Controller.php
Expand Up @@ -60,7 +60,7 @@ public function onMessage(ConnectionInterface $from, $msg)
{
$this->requestBuffer .= $msg;

$this->checkContentLength();
$this->checkContentLength($from);
}

protected function checkContentLength(ConnectionInterface $connection)
Expand Down

0 comments on commit 1c2b89b

Please sign in to comment.