diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-25 20:44:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-25 20:44:05 +0100 |
commit | b340e5e4628e2f5c136fe1f4300821d89ed4cb94 (patch) | |
tree | 603e11e382185e757035e937142d1c8e03c45e87 /util/stanza.lua | |
parent | 10aa40227bc374f95d39bf1c03224c7302f33955 (diff) | |
download | prosody-b340e5e4628e2f5c136fe1f4300821d89ed4cb94.tar.gz prosody-b340e5e4628e2f5c136fe1f4300821d89ed4cb94.zip |
util.stanza: Check that argument to reply is a stanza
Diffstat (limited to 'util/stanza.lua')
-rw-r--r-- | util/stanza.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/stanza.lua b/util/stanza.lua index 55c38c73..f46d5b30 100644 --- a/util/stanza.lua +++ b/util/stanza.lua @@ -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, |