mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: Reduce line count using new util.stanza attr method
Since this stanza-id was generated elsewhere in mod_mam, there should be no need for normalization.
This commit is contained in:
parent
9af7bb723b
commit
738ff2a5f9
1 changed files with 2 additions and 4 deletions
|
@ -481,10 +481,8 @@ module:hook("pre-message/full", strip_stanza_id_after_other_events, -1);
|
|||
module:hook("message/offline/handle", function(event)
|
||||
local stanza = event.stanza;
|
||||
local user = event.username .. "@" .. host;
|
||||
for st_id in stanza:childtags("stanza-id", xmlns_st_id) do
|
||||
if st_id.attr.by == user then
|
||||
return true;
|
||||
end
|
||||
if stanza:get_child_with_attr("stanza-id", xmlns_st_id, "by", user) then
|
||||
return true;
|
||||
end
|
||||
end, -2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue