Ver Fonte

[bugfix] oops typo

B Thibault há 8 anos atrás
pai
commit
d156fc72ce
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      srv/src/httpServ.js

+ 1 - 1
srv/src/httpServ.js

@@ -15,7 +15,7 @@ function Server(port) {
         res.on('end', () => {
             res.ended = true;
         });
-        ctx.onRequest(req, res););
+        ctx.onRequest(req, res);
     });
     this.httpServ.listen(port, ctx.onListen);
 }