diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | plugins/mod_vcard_legacy.lua | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -20,7 +20,7 @@ New features - Asynchronous operations - Busted for tests - mod\_muc\_mam (XEP-0313 in groupchats) -- mod\_vcard\_legacy +- mod\_vcard\_legacy (XEP-0398) 0.10.0 ====== diff --git a/plugins/mod_vcard_legacy.lua b/plugins/mod_vcard_legacy.lua index 51d84dc3..e348b84f 100644 --- a/plugins/mod_vcard_legacy.lua +++ b/plugins/mod_vcard_legacy.lua @@ -9,7 +9,9 @@ local base64_decode = require "util.encodings".base64.decode; local vcards = module:open_store("vcard"); module:add_feature("vcard-temp"); -module:add_feature("urn:xmpp:pep-vcard-conversion:0"); +module:hook("account-disco-info", function (event) + event.reply:tag("feature", { var = "urn:xmpp:pep-vcard-conversion:0" }):up(); +end); -- Simple translations -- <foo><text>hey</text></foo> -> <FOO>hey</FOO> |