Sfoglia il codice sorgente

[bugfix] oops typo

B Thibault 8 anni fa
parent
commit
d156fc72ce
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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);
 }