util.error: Default error originator to stanza sender

The @by attribute is primarily useful for errors caused by intermediate
entities.
This commit is contained in:
Kim Alvefur 2020-09-26 18:14:10 +02:00
parent 0354452a9a
commit 8627f2e4d5

View file

@ -96,7 +96,8 @@ local function from_stanza(stanza, context)
local error_tag = stanza:get_child("error");
context = context or {};
context.stanza = stanza;
context.by = error_tag.attr.by;
context.by = error_tag.attr.by or stanza.attr.from;
return setmetatable({
type = error_type or "cancel";
condition = condition or "undefined-condition";