# HG changeset patch # User Kim Alvefur # Date 1593100898 -7200 # Node ID 8141645e38655d6febd2caf95c5e22ea1485fb7b # Parent a0e17b7c8b0546ad47b80cfcb7dc4c7c13bfd8d1 mod_mam: "Handle" messages that have been archived in the absense of mod_offline diff -r a0e17b7c8b05 -r 8141645e3865 plugins/mod_mam/mod_mam.lua --- a/plugins/mod_mam/mod_mam.lua Mon Aug 30 20:19:15 2021 +0200 +++ b/plugins/mod_mam/mod_mam.lua Thu Jun 25 18:01:38 2020 +0200 @@ -474,6 +474,13 @@ module:hook("pre-message/bare", strip_stanza_id_after_other_events, -1); module:hook("pre-message/full", strip_stanza_id_after_other_events, -1); +module:hook("message/offline/handle", function(event) + local stanza = event.stanza; + if stanza:get_child("stanza-id", xmlns_st_id) then + return true; + end +end, -2); + if cleanup_after ~= "never" then local cleanup_storage = module:open_store("archive_cleanup"); local cleanup_map = module:open_store("archive_cleanup", "map");