net.websocket: Fix traceback in case of ondisconnect being called twice

We want to figure out what situations the double ondisconnect happens in, and
aim to fix the root cause in the future.
This commit is contained in:
Matthew Wild 2019-11-26 15:29:01 +00:00
parent e8f099babc
commit 09cdcfc0a1

View file

@ -23,6 +23,7 @@ local websockets = {};
local websocket_listeners = {};
function websocket_listeners.ondisconnect(conn, err)
local s = websockets[conn];
if not s then return; end
websockets[conn] = nil;
if s.close_timer then
timer.stop(s.close_timer);