mod_csi_simple: Consider MUC invites important

Both mediated invites defined by XEP-0045: Multi-User Chat and direct
invites defined by XEP-0249: Direct MUC Invitations
This commit is contained in:
Kim Alvefur 2020-04-18 19:36:26 +02:00
parent 8be4a3edd7
commit 8f77033238
2 changed files with 11 additions and 0 deletions

View file

@ -48,6 +48,9 @@ module:hook("csi-is-stanza-important", function (event)
if stanza:get_child("encryption", "urn:xmpp:eme:0") then
return true;
end
if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
return true;
end
for important in important_payloads do
if stanza:find(important) then
return true;