mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_roster: Hook stream-features event using new events API.
This commit is contained in:
parent
afea5e0f46
commit
025cbd545c
1 changed files with 6 additions and 6 deletions
|
@ -23,12 +23,12 @@ local core_post_stanza = core_post_stanza;
|
|||
module:add_feature("jabber:iq:roster");
|
||||
|
||||
local rosterver_stream_feature = st.stanza("ver", {xmlns="urn:xmpp:features:rosterver"}):tag("optional"):up();
|
||||
module:add_event_hook("stream-features",
|
||||
function (session, features)
|
||||
if session.username then
|
||||
module:hook("stream-features", function(event)
|
||||
local origin, features = event.origin, event.features;
|
||||
if origin.username then
|
||||
features:add_child(rosterver_stream_feature);
|
||||
end
|
||||
end);
|
||||
end);
|
||||
|
||||
module:add_iq_handler("c2s", "jabber:iq:roster",
|
||||
function (session, stanza)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue