mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
0354452a9a
commit
8627f2e4d5
1 changed files with 2 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue