Changeset

9770:76cb409db537 0.11

mod_csi_simple: Consider messages with subject (eg MUC joins) (fixes part of #1250)
author Kim Alvefur <zash@zash.se>
date Sun, 06 Jan 2019 21:09:00 +0100
parents 9769:150e9574c149
children 9771:bf92f37de137
files plugins/mod_csi_simple.lua
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_csi_simple.lua	Sun Jan 06 21:09:50 2019 +0100
+++ b/plugins/mod_csi_simple.lua	Sun Jan 06 21:09:00 2019 +0100
@@ -73,6 +73,9 @@
 		if stanza:get_child("body") then
 			return true;
 		end
+		if stanza:get_child("subject") then
+			return true;
+		end
 		return false;
 	end
 	return true;