changeset 2060:bd0c5d546bf8

mod_block_strangers: Allow iq/full responses through
author Matthew Wild <mwild1@gmail.com>
date Fri, 04 Mar 2016 17:16:13 +0000
parents e96a86561f3e
children b84284144e21
files mod_block_strangers/mod_block_strangers.lua
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_block_strangers/mod_block_strangers.lua	Wed Mar 02 19:17:12 2016 +0100
+++ b/mod_block_strangers/mod_block_strangers.lua	Fri Mar 04 17:16:13 2016 +0000
@@ -9,7 +9,8 @@
 	local to_user, to_host, to_resource = jid_split(stanza.attr.to);
 	local from_jid = jid_bare(stanza.attr.from);
 	if to_user and not is_contact_subscribed(to_user, to_host, from_jid) then
-		if to_resource and stanza.attr.type == "groupchat" then
+		if to_resource and stanza.attr.type == "groupchat"
+		or stanza.name == "iq" and (stanza.attr.type == "result" or stanza.attr.type == "error") then
 			return nil; -- Pass through
 		end
 		if stanza.name == "iq" and ( stanza.attr.type == "get" or stanza.attr.type == "set" ) then