mod_roster: Hook stream-features event using new events API.

This commit is contained in:
Waqas Hussain 2010-02-12 04:22:30 +05:00
parent afea5e0f46
commit 025cbd545c

View file

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