mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
e8f099babc
commit
09cdcfc0a1
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue