浏览代码

Prevent the listener from throwing an error when the scenario ends.

Sacha Ligthert 2 年之前
父节点
当前提交
b8df61dcc2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Export.lua

+ 1 - 1
Export.lua

@@ -28,7 +28,7 @@ end
 function LuaExportStop()
 	-- Terminate TCP connection
 	if MySocket then 
-		socket.try(MySocket:send("exit\n"))
+		--socket.try(MySocket:send("exit\n"))
 		MySocket:close()
 	end
 end