diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-12-04 20:16:30 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-12-04 20:16:30 +0500 |
commit | 2d2414f199a416409e84a3ef9c38a84ea0ba825b (patch) | |
tree | dc905cc58daf6473950071c0886043fca13df861 /plugins/mod_vcard.lua | |
parent | fcf33a735bd454e7d755c36be93e011ff5754283 (diff) | |
download | prosody-2d2414f199a416409e84a3ef9c38a84ea0ba825b.tar.gz prosody-2d2414f199a416409e84a3ef9c38a84ea0ba825b.zip |
Change modules to use the new add_feature module API method.
This also fixes the bug causing disco features being added to every disco reply for every host.
Diffstat (limited to 'plugins/mod_vcard.lua')
-rw-r--r-- | plugins/mod_vcard.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_vcard.lua b/plugins/mod_vcard.lua index 6b8ee23a..4f78867b 100644 --- a/plugins/mod_vcard.lua +++ b/plugins/mod_vcard.lua @@ -28,7 +28,7 @@ local t_concat, t_insert = table.concat, table.insert; require "util.jid" local jid_split = jid.split; -require "core.discomanager".set("vcard", "vcard-temp"); +module:add_feature("vcard-temp"); module:add_iq_handler({"c2s", "s2sin"}, "vcard-temp", function (session, stanza) |