mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: Check sender of error instead of receiver
The intent is to capture errors to stanzas sent by the local user, so that they can see why a message failed to be delivered even if the error came after they went offline.
This commit is contained in:
parent
c8db26be66
commit
78668f1be3
1 changed files with 3 additions and 0 deletions
|
@ -266,6 +266,9 @@ end
|
|||
local function should_store(stanza) --> boolean, reason: string
|
||||
local st_type = stanza.attr.type or "normal";
|
||||
local st_to_full = (stanza.attr.to or ""):find("/");
|
||||
if st_type == "error" then
|
||||
st_to_full = (stanza.attr.from or ""):find("/");
|
||||
end
|
||||
|
||||
if st_type == "headline" then
|
||||
-- Headline messages are ephemeral by definition
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue