mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_vcard4: Report correct error condition (fixes #1521)
On error, the second return value is the error condition, not the third.
This commit is contained in:
parent
7484fb15cb
commit
710339a838
1 changed files with 2 additions and 2 deletions
|
@ -14,9 +14,9 @@ module:hook("iq-get/bare/urn:ietf:params:xml:ns:vcard-4.0:vcard", function (even
|
|||
local ok, id, item = pep_service:get_last_item("urn:xmpp:vcard4", stanza.attr.from);
|
||||
if ok and item then
|
||||
origin.send(st.reply(stanza):add_child(item.tags[1]));
|
||||
elseif item == "item-not-found" or not id then
|
||||
elseif id == "item-not-found" or not id then
|
||||
origin.send(st.error_reply(stanza, "cancel", "item-not-found"));
|
||||
elseif item == "forbidden" then
|
||||
elseif id == "forbidden" then
|
||||
origin.send(st.error_reply(stanza, "auth", "forbidden"));
|
||||
else
|
||||
origin.send(st.error_reply(stanza, "modify", "undefined-condition"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue