typo: invoke the function

This commit is contained in:
Girish Ramakrishnan
2024-01-23 11:44:55 +01:00
parent d3551826c1
commit c95bb248fb
2 changed files with 2 additions and 2 deletions

View File

@@ -707,6 +707,6 @@ async function start() {
async function stop() {
if (!gServer) return;
await util.promisify(gServer.close.bind(gServer));
await util.promisify(gServer.close.bind(gServer))();
gServer = null;
}