mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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");
|
st.reply(not "a stanza");
|
||||||
end, "expected stanza");
|
end, "expected stanza");
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
it("should reject not-stanzas", function ()
|
||||||
|
assert.has.error_match(function ()
|
||||||
|
st.reply({name="x"});
|
||||||
|
end, "expected stanza");
|
||||||
|
end);
|
||||||
|
|
||||||
end);
|
end);
|
||||||
|
|
||||||
describe("#error_reply()", function()
|
describe("#error_reply()", function()
|
||||||
|
|
|
@ -438,7 +438,7 @@ local function reply(orig)
|
||||||
error("bad argument to reply: expected stanza, got "..type(orig));
|
error("bad argument to reply: expected stanza, got "..type(orig));
|
||||||
end
|
end
|
||||||
return new_stanza(orig.name,
|
return new_stanza(orig.name,
|
||||||
orig.attr and {
|
{
|
||||||
to = orig.attr.from,
|
to = orig.attr.from,
|
||||||
from = orig.attr.to,
|
from = orig.attr.to,
|
||||||
id = orig.attr.id,
|
id = orig.attr.id,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue