diff --git a/JavaScript/b-transport/transport/http.js b/JavaScript/b-transport/transport/http.js
index fda7506..80851f1 100644
--- a/JavaScript/b-transport/transport/http.js
+++ b/JavaScript/b-transport/transport/http.js
@@ -32,7 +32,7 @@ module.exports = (routing, port, console) => {
     if (!handler) return res.end('"Not found"');
     const { args } = await receiveArgs(req);
     console.log(`${socket.remoteAddress} ${method} ${url}`);
-    const result = await handler(args);
+    const result = await handler(...args);
     res.end(JSON.stringify(result));
   }).listen(port);