# HG changeset patch # User Matthew Wild # Date 1457111773 0 # Node ID bd0c5d546bf8eef4e019a8600320e133852ef682 # Parent e96a86561f3e59d8e178e9298cbee49bcabdd81c mod_block_strangers: Allow iq/full responses through diff -r e96a86561f3e -r bd0c5d546bf8 mod_block_strangers/mod_block_strangers.lua --- 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