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:
Kim Alvefur 2021-09-12 20:17:26 +02:00
parent 9af7bb723b
commit 738ff2a5f9

View file

@ -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);