diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-27 03:12:12 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-27 03:12:12 +0000 |
commit | a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1 (patch) | |
tree | d156f4bd25ecad253efb6417bf04bf93b9a5e637 /plugins/mod_vcard.lua | |
parent | d70ee791d524173cd0c203f8c9fbfabeb5fd9816 (diff) | |
download | prosody-a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1.tar.gz prosody-a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1.zip |
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Diffstat (limited to 'plugins/mod_vcard.lua')
-rw-r--r-- | plugins/mod_vcard.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_vcard.lua b/plugins/mod_vcard.lua index 1d9b3d63..844a2406 100644 --- a/plugins/mod_vcard.lua +++ b/plugins/mod_vcard.lua @@ -10,7 +10,7 @@ local jid_split = jid.split; require "core.discomanager".set("vcard", "vcard-temp"); -add_iq_handler({"c2s", "s2sin"}, "vcard-temp", +module:add_iq_handler({"c2s", "s2sin"}, "vcard-temp", function (session, stanza) if stanza.tags[1].name == "vCard" then local to = stanza.attr.to; @@ -46,7 +46,7 @@ add_iq_handler({"c2s", "s2sin"}, "vcard-temp", end); local feature_vcard_attr = { var='vcard-temp' }; -add_event_hook("stream-features", +module:add_event_hook("stream-features", function (session, features) if session.type == "c2s" then features:tag("feature", feature_vcard_attr):up(); |