mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_vcard: Fixed to use new util.stanza.add_child
This commit is contained in:
parent
cc17cb001a
commit
0e5389054a
1 changed files with 1 additions and 3 deletions
|
@ -24,9 +24,7 @@ add_iq_handler("c2s", "vcard-temp",
|
|||
vCard = st.deserialize(datamanager.load(session.username, session.host, "vCard"));-- load user's own vCard
|
||||
end
|
||||
if vCard then
|
||||
local iq = st.reply(stanza);
|
||||
iq:add_child(vCard);
|
||||
send(session, iq); -- send vCard!
|
||||
send(session, st.reply(stanza):add_child(vCard)); -- send vCard!
|
||||
else
|
||||
send(session, st.error_reply(stanza, "cancel", "item-not-found"));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue