mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.stanza: Check that argument to reply is a stanza
This commit is contained in:
parent
10aa40227b
commit
b340e5e462
2 changed files with 9 additions and 0 deletions
|
@ -434,6 +434,9 @@ local function iq(attr)
|
|||
end
|
||||
|
||||
local function reply(orig)
|
||||
if not is_stanza(orig) then
|
||||
error("bad argument to reply: expected stanza, got "..type(orig));
|
||||
end
|
||||
return new_stanza(orig.name,
|
||||
orig.attr and {
|
||||
to = orig.attr.from,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue