diff options
author | Kim Alvefur <zash@zash.se> | 2013-05-10 22:31:20 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-05-10 22:31:20 +0200 |
commit | 0e9cbc1e303f814cbe830a968e76d36e457e48ab (patch) | |
tree | f7786b25fd7e50c5019e193f49d194508100e019 | |
parent | 33a4ee4b14e8ba0b22d038e06ed1daa695ce3648 (diff) | |
parent | 1dcdcf546304810a950d5e3c9fb1cfbee2915ed8 (diff) | |
download | prosody-0e9cbc1e303f814cbe830a968e76d36e457e48ab.tar.gz prosody-0e9cbc1e303f814cbe830a968e76d36e457e48ab.zip |
Merge 0.9->trunk
-rw-r--r-- | plugins/mod_c2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index efef8763..1d2dd6dd 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -157,7 +157,7 @@ local function session_close(session, reason) session.send("</stream:stream>"); function session.send() return false; end - local reason = (reason and (reason.text or reason.condition)) or reason; + local reason = (reason and (reason.name or reason.text or reason.condition)) or reason; session.log("info", "c2s stream for %s closed: %s", session.full_jid or ("<"..session.ip..">"), reason or "session closed"); -- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote |