diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-06 21:09:32 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-06 21:09:32 +0100 |
commit | 5b6981c23347f1363411228dbdd7875bdba073fd (patch) | |
tree | 97b270a47a5e65bc616c6834159b929e40093f6e /plugins/mod_csi_simple.lua | |
parent | a3f4bed268863596855478a35f724f151d733f14 (diff) | |
download | prosody-5b6981c23347f1363411228dbdd7875bdba073fd.tar.gz prosody-5b6981c23347f1363411228dbdd7875bdba073fd.zip |
mod_csi_simple: Consider messages encrypted payload as important (fixes part of #1250)
Diffstat (limited to 'plugins/mod_csi_simple.lua')
-rw-r--r-- | plugins/mod_csi_simple.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index da6f4913..da2dd953 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -76,6 +76,9 @@ module:hook("csi-is-stanza-important", function (event) if stanza:get_child("subject") then return true; end + if stanza:get_child("encryption", "urn:xmpp:eme:0") then + return true; + end return false; end return true; |