diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-01 22:06:25 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-01 22:06:25 +0200 |
commit | 3afb5ef61a63ac44da1c2e5a5f710b3594910c82 (patch) | |
tree | bcb4617cbbc2384a757dbf5a50971cbd22e9a476 /plugins | |
parent | d4ebb070dfe68782852f6d32f6cc00e558a62785 (diff) | |
download | prosody-3afb5ef61a63ac44da1c2e5a5f710b3594910c82.tar.gz prosody-3afb5ef61a63ac44da1c2e5a5f710b3594910c82.zip |
mod_vcard_legacy: Announce feature on bare JID per XEP
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_vcard_legacy.lua | 4 |
1 files changed, 3 insertions, 1 deletions
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> |