mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Remove redundant check for attrs
A stanza can't not have attrs if created the correct way
This commit is contained in:
parent
b340e5e462
commit
11095184a5
2 changed files with 8 additions and 1 deletions
|
@ -176,6 +176,13 @@ describe("util.stanza", function()
|
|||
st.reply(not "a stanza");
|
||||
end, "expected stanza");
|
||||
end);
|
||||
|
||||
it("should reject not-stanzas", function ()
|
||||
assert.has.error_match(function ()
|
||||
st.reply({name="x"});
|
||||
end, "expected stanza");
|
||||
end);
|
||||
|
||||
end);
|
||||
|
||||
describe("#error_reply()", function()
|
||||
|
|
|
@ -438,7 +438,7 @@ local function reply(orig)
|
|||
error("bad argument to reply: expected stanza, got "..type(orig));
|
||||
end
|
||||
return new_stanza(orig.name,
|
||||
orig.attr and {
|
||||
{
|
||||
to = orig.attr.from,
|
||||
from = orig.attr.to,
|
||||
id = orig.attr.id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue