mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_c2s: Just destroy the session when it has no connection (see #641)
This commit is contained in:
parent
ae72fdd667
commit
4308f867bb
1 changed files with 3 additions and 0 deletions
|
@ -175,6 +175,9 @@ local function session_close(session, reason)
|
|||
sm_destroy_session(session, reason);
|
||||
conn:close();
|
||||
end
|
||||
else
|
||||
local reason = (reason and (reason.name or reason.text or reason.condition)) or reason;
|
||||
sm_destroy_session(session, reason);
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue