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");
|
module:add_feature("jabber:iq:roster");
|
||||||
|
|
||||||
local rosterver_stream_feature = st.stanza("ver", {xmlns="urn:xmpp:features:rosterver"}):tag("optional"):up();
|
local rosterver_stream_feature = st.stanza("ver", {xmlns="urn:xmpp:features:rosterver"}):tag("optional"):up();
|
||||||
module:add_event_hook("stream-features",
|
module:hook("stream-features", function(event)
|
||||||
function (session, features)
|
local origin, features = event.origin, event.features;
|
||||||
if session.username then
|
if origin.username then
|
||||||
features:add_child(rosterver_stream_feature);
|
features:add_child(rosterver_stream_feature);
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
||||||
module:add_iq_handler("c2s", "jabber:iq:roster",
|
module:add_iq_handler("c2s", "jabber:iq:roster",
|
||||||
function (session, stanza)
|
function (session, stanza)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue