diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-25 20:46:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-25 20:46:55 +0100 |
commit | 7fdb06225efa628956ee38d944bd45d811bac358 (patch) | |
tree | 09b44781b668b0bdc6ec729d5979680a65ce0839 /util/stanza.lua | |
parent | b9875e5501fe7ab32465e4677a9f35b064be5099 (diff) | |
download | prosody-7fdb06225efa628956ee38d944bd45d811bac358.tar.gz prosody-7fdb06225efa628956ee38d944bd45d811bac358.zip |
util.stanza: Remove redundant check for attrs
A stanza can't not have attrs if created the correct way
Diffstat (limited to 'util/stanza.lua')
-rw-r--r-- | util/stanza.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/stanza.lua b/util/stanza.lua index f46d5b30..919d983c 100644 --- a/util/stanza.lua +++ b/util/stanza.lua @@ -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, |