Software /
code /
prosody
Diff
plugins/mod_bosh.lua @ 5639:7a0e19e649b7
mod_bosh: Fix traceback in case session is destroyed during the stream-features event (thanks Biszkopcik)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 02 Jun 2013 19:25:53 +0200 |
parent | 5188:6689605f8591 |
child | 5640:4f1889672063 |
child | 5644:f9cfe6f5d60f |
line wrap: on
line diff
--- a/plugins/mod_bosh.lua Sun May 26 22:58:13 2013 +0200 +++ b/plugins/mod_bosh.lua Sun Jun 02 19:25:53 2013 +0200 @@ -345,7 +345,7 @@ 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