mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 13:17:38 +03:00
adhoc.lib: Tweak to allow using util.error objects
Since util.stanza supports util.error objects via duck-typing and adhoc errors look enough like util.error objects, they should able to pass as such. This will allow converting adhoc commands to use util.error.
This commit is contained in:
parent
5d9802727b
commit
8711e2bedc
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ function _M.handle_cmd(command, origin, stanza)
|
|||
cmdreply = command:cmdtag("canceled", sessionid);
|
||||
elseif data.status == "error" then
|
||||
states[sessionid] = nil;
|
||||
local reply = st.error_reply(stanza, data.error.type, data.error.condition, data.error.message);
|
||||
local reply = st.error_reply(stanza, data.error);
|
||||
origin.send(reply);
|
||||
return true;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue