view mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua @ 4606:d6eb2b722b90

mod_conversejs: Update description The module browser was still using the first commit message (6f5c99c9f6cc) as description.
author Kim Alvefur <zash@zash.se>
date Tue, 29 Jun 2021 12:48:42 +0200
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);