diff options
author | Kim Alvefur <zash@zash.se> | 2013-06-02 19:25:53 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-06-02 19:25:53 +0200 |
commit | 280227fdb28ce774b5e838f5db18da985710ebd8 (patch) | |
tree | 6befacc51a0bed0e1a37eca8dd3263d1f35b02bf | |
parent | 8072bfb662cdfb331c0d32dbc718751b7602f758 (diff) | |
download | prosody-280227fdb28ce774b5e838f5db18da985710ebd8.tar.gz prosody-280227fdb28ce774b5e838f5db18da985710ebd8.zip |
mod_bosh: Fix traceback in case session is destroyed during the stream-features event (thanks Biszkopcik)
-rw-r--r-- | plugins/mod_bosh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 19f191c8..184da321 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -345,7 +345,7 @@ function stream_callbacks.streamopened(context, attr) local features = st.stanza("stream:features"); hosts[session.host].events.fire_event("stream-features", { origin = session, features = features }); fire_event("stream-features", session, features); - table.insert(session.send_buffer, tostring(features)); + session.send(tostring(features)); session.notopen = nil; end end |