diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-03 15:18:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-03 15:18:21 +0200 |
commit | 7978442457dfe918f6b46cdeea5fc1ef01c5dfee (patch) | |
tree | 83905bf1d9fbc0c370cbad3da77c71be2ca22032 /plugins | |
parent | d5eb6240a71463bca1b15ea1b24d600a73c86560 (diff) | |
download | prosody-7978442457dfe918f6b46cdeea5fc1ef01c5dfee.tar.gz prosody-7978442457dfe918f6b46cdeea5fc1ef01c5dfee.zip |
mod_c2s: Just destroy the session when it has no connection (see #641)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_c2s.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index 30a017c0..2bb919f8 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -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 |