diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-24 17:46:51 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-24 17:46:51 +0200 |
commit | b532d20ef344a600a0cf743f1e35668bac969ce2 (patch) | |
tree | c73a74b3d3d00a661c9e6747575e6c509a74f6e0 /plugins/mod_bosh.lua | |
parent | 95eac7d4c6f95e84274d9a547c77aa6c1418100a (diff) | |
download | prosody-b532d20ef344a600a0cf743f1e35668bac969ce2.tar.gz prosody-b532d20ef344a600a0cf743f1e35668bac969ce2.zip |
mod_bosh: Fire stream feature event on hosts (thanks gerald)
Since the module is now global, this event was also fired in a global
context by default.
Diffstat (limited to 'plugins/mod_bosh.lua')
-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 cab89a0a..251ef740 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -419,7 +419,7 @@ function stream_callbacks.streamopened(context, attr) if session.notopen then local features = st.stanza("stream:features"); - module:fire_event("stream-features", { origin = session, features = features }); + module:context(session.host):fire_event("stream-features", { origin = session, features = features }); session.send(features); session.notopen = nil; end |