mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
b0dbacb69c
commit
8c1161cf77
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue