mod_disco: Send XEP-0115 caps in s2s stream features

Not currently used for anything, but allowed and could be used in the
future and might be used by other servers.
This commit is contained in:
Kim Alvefur 2021-08-12 19:34:17 +02:00
parent d6122ce3a5
commit a049793c95

View file

@ -153,6 +153,12 @@ module:hook("stream-features", function (event)
end
end);
module:hook("s2s-stream-features", function (event)
if event.origin.type == "s2sin" then
event.features:add_child(get_server_caps_feature());
end
end);
-- Handle disco requests to user accounts
if module:get_host_type() ~= "local" then return end -- skip for components
module:hook("iq-get/bare/http://jabber.org/protocol/disco#info:query", function(event)