mod_private, mod_vcard: Use the usual comment on non-get received iqs.

This commit is contained in:
Emmanuel Gil Peyrot 2018-08-24 20:36:06 +02:00
parent cc4ca8f846
commit 509755ea3f
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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));