mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua
author Nicholas George <wirlaburla@worlio.com>
Sat, 08 Jun 2024 03:28:25 -0500
changeset 5926 f408b8e603af
parent 3423 aed47ebd26d3
permissions -rw-r--r--
mod_server_info: fix dataforms require

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