mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_private, mod_vcard: Use the usual comment on non-get received iqs.
This commit is contained in:
parent
cc4ca8f846
commit
509755ea3f
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ module:hook("iq/self/jabber:iq:private:query", function(event)
|
|||
origin.send(st.reply(stanza):add_child(query));
|
||||
end
|
||||
return true;
|
||||
else -- type == set
|
||||
else -- stanza.attr.type == "set"
|
||||
local data;
|
||||
if #tag ~= 0 then
|
||||
data = st.preserialize(tag);
|
||||
|
|
|
@ -29,7 +29,7 @@ local function handle_vcard(event)
|
|||
else
|
||||
session.send(st.error_reply(stanza, "cancel", "item-not-found"));
|
||||
end
|
||||
else
|
||||
else -- stanza.attr.type == "set"
|
||||
if not to then
|
||||
if vcards:set(session.username, st.preserialize(stanza.tags[1])) then
|
||||
session.send(st.reply(stanza));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue