mod_csi: Only advertise CSI to clients if something is handling CSI events

This commit is contained in:
Kim Alvefur 2019-11-17 23:53:51 +01:00
parent 55c130d1e4
commit aa5d88fe44

View file

@ -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);