Pārlūkot izejas kodu

[bugfix] oops typo

B Thibault 8 gadi atpakaļ
vecāks
revīzija
d156fc72ce
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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);
 }