mod_mam: Respect no-store hint (thanks Ge0rG)

no-store is used in an example in XEP-0313, so obviously this is the
preferred hint
This commit is contained in:
Kim Alvefur 2020-04-22 18:47:06 +02:00
parent b0dbacb69c
commit 8c1161cf77

View file

@ -278,7 +278,8 @@ local function should_store(stanza) --> boolean, reason: string
-- MUC messages always go to the full JID, usually archived by the MUC
return false, "groupchat";
end
if stanza:get_child("no-permanent-store", "urn:xmpp:hints") then
if stanza:get_child("no-store", "urn:xmpp:hints")
or stanza:get_child("no-permanent-store", "urn:xmpp:hints") then
return false, "hint";
end
if stanza:get_child("store", "urn:xmpp:hints") then