mod_mam: Explain behavior with absent mod_offline in a comment

This commit is contained in:
Kim Alvefur 2021-08-31 11:25:23 +02:00
parent 20de5f297e
commit 2937b1672b

View file

@ -474,6 +474,10 @@ end
module:hook("pre-message/bare", strip_stanza_id_after_other_events, -1);
module:hook("pre-message/full", strip_stanza_id_after_other_events, -1);
-- Catch messages not stored by mod_offline and mark them as stored if they
-- have been archived. This would generally only happen if mod_offline is
-- disabled. Otherwise the message would generate a delivery failure report,
-- which would not be accurate because it has been archived.
module:hook("message/offline/handle", function(event)
local stanza = event.stanza;
if stanza:get_child("stanza-id", xmlns_st_id) then