view mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua @ 3456:b85622b577ad

mod_cache_c2s_caps: Unset the caps_cache also on errors due to the result validation.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Tue, 22 Jan 2019 15:39:35 +0100
parents aed47ebd26d3
children
line wrap: on
line source

module:hook("message/host", function (event)
	local stanza = event.stanza;
	if #stanza.tags == 1 and stanza.tags[1].attr.xmlns == "http://jabber.org/protocol/chatstates" then
		return true;
	end
end, -10);