Fix content length bug

This commit is contained in:
Marcel Pociot 2019-02-27 15:44:42 +01:00
parent f26f89236e
commit 1c2b89b54d
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ abstract class Controller implements HttpServerInterface
{
$this->requestBuffer .= $msg;
$this->checkContentLength();
$this->checkContentLength($from);
}
protected function checkContentLength(ConnectionInterface $connection)