diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-17 23:53:51 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-17 23:53:51 +0100 |
commit | aa5d88fe4437d08b509164568150bafc16222ce5 (patch) | |
tree | 2974aae499fe62ace6fe6e8e70dff877da5e8960 /plugins/mod_csi.lua | |
parent | 55c130d1e410cdab6e35312f848d4f4a33682699 (diff) | |
download | prosody-aa5d88fe4437d08b509164568150bafc16222ce5.tar.gz prosody-aa5d88fe4437d08b509164568150bafc16222ce5.zip |
mod_csi: Only advertise CSI to clients if something is handling CSI events
Diffstat (limited to 'plugins/mod_csi.lua')
-rw-r--r-- | plugins/mod_csi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_csi.lua b/plugins/mod_csi.lua index 84476cac..870df418 100644 --- a/plugins/mod_csi.lua +++ b/plugins/mod_csi.lua @@ -3,7 +3,7 @@ local xmlns_csi = "urn:xmpp:csi:0"; local csi_feature = st.stanza("csi", { xmlns = xmlns_csi }); module:hook("stream-features", function (event) - if event.origin.username then + if event.origin.username and prosody.hosts[module.host].events._handlers["csi-client-active"] then event.features:add_child(csi_feature); end end); |