mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
8be4a3edd7
commit
8f77033238
2 changed files with 11 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue