mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_csi: Only advertise CSI to clients if something is handling CSI events
This commit is contained in:
parent
55c130d1e4
commit
aa5d88fe44
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue