# HG changeset patch # User Kim Alvefur # Date 1370193953 -7200 # Node ID 7a0e19e649b7caea4b427d33c72430cf0685029f # Parent 5f3c0b11aa8879f03be782ac1f22660fdb2534cd mod_bosh: Fix traceback in case session is destroyed during the stream-features event (thanks Biszkopcik) diff -r 5f3c0b11aa88 -r 7a0e19e649b7 plugins/mod_bosh.lua --- 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