This commit is contained in:
freek 2018-11-27 21:32:49 +01:00
parent 930f7f1186
commit 30525acbba
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class WebSocketServer
$app = new OriginCheck($router, config('websockets.allowedOrigins', []));
$httpServer = new HttpServer($app, config('websockets.maxRequestSize'));
$httpServer = new HttpServer($app, config('websockets.maxRequestSizeInKb') * 1024);
if (HttpLogger::isEnabled()) {
$httpServer = HttpLogger::decorate($httpServer);