mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua
author Kim Alvefur <zash@zash.se>
Thu, 23 Mar 2023 16:19:09 +0100
changeset 5274 7acf73d2ebb5
parent 3423 aed47ebd26d3
permissions -rw-r--r--
mod_http_oauth2: Use <fieldset> in templates because it looks nice Removes some CSS as well

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);