# HG changeset patch # User Matthew Wild # Date 1698495356 -3600 # Node ID ad1ed84fdf138bcacfe82704066777d277241da7 # Parent 8fbdd878fcf6414cb42c3a741a03e06c3e98b81d mod_bosh: Include stream attributes in stream-features event This matches what mod_c2s does, and fixes a traceback in mod_sasl2_fast when used with BOSH (that module tries to use event.stream.from). diff -r 8fbdd878fcf6 -r ad1ed84fdf13 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Fri Oct 27 22:38:00 2023 +0200 +++ b/plugins/mod_bosh.lua Sat Oct 28 13:15:56 2023 +0100 @@ -456,7 +456,7 @@ if session.notopen then local features = st.stanza("stream:features"); - module:context(session.host):fire_event("stream-features", { origin = session, features = features }); + module:context(session.host):fire_event("stream-features", { origin = session, features = features, stream = attr }); session.send(features); session.notopen = nil; end