# HG changeset patch # User Kim Alvefur # Date 1537804011 -7200 # Node ID 7425af27fc67b0a05f8ad76111e8aa4424a574c6 # Parent 866cba3689f4927d1b0e1c880766a975297fe296 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. diff -r 866cba3689f4 -r 7425af27fc67 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Sun Sep 23 18:59:04 2018 +0200 +++ b/plugins/mod_bosh.lua Mon Sep 24 17:46:51 2018 +0200 @@ -419,7 +419,7 @@ 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