util.stanza: Check that argument to reply is a stanza

This commit is contained in:
Kim Alvefur 2019-11-25 20:44:05 +01:00
parent 10aa40227b
commit b340e5e462
2 changed files with 9 additions and 0 deletions

View file

@ -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,