From d6ac3aefaaa3f940267eee001fed774fba52bbbf Mon Sep 17 00:00:00 2001 From: empathicqubit Date: Fri, 5 Nov 2021 16:26:03 +0100 Subject: [PATCH] Close connection --- commands.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands.lua b/commands.lua index 83714b4..645a336 100644 --- a/commands.lua +++ b/commands.lua @@ -349,6 +349,7 @@ return function(server) local function processQuit(command) server.response(server.responseType.QUIT, server.errorType.OK, command.requestId, nil) + server.conn:close() os.exit(0) end @@ -904,4 +905,4 @@ return function(server) end return me -end \ No newline at end of file +end