mod_mam: Keep chat markers (thanks Ge0rG)

This commit is contained in:
Kim Alvefur 2020-04-22 18:48:27 +02:00
parent 8c1161cf77
commit 9bb75c85c4

View file

@ -301,6 +301,9 @@ local function should_store(stanza) --> boolean, reason: string
-- and the same applies to the receipt
return true, "receipt";
end
if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then
return true, "marker";
end
if stanza:get_child("x", "jabber:x:conference")
or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
return true, "invite";