mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua
author Kim Alvefur <zash@zash.se>
Sat, 25 Jan 2020 20:04:39 +0100
changeset 3865 ede3d1724dd1
parent 3423 aed47ebd26d3
permissions -rw-r--r--
mod_rest: Attempt to auto-discover data type wanted by callback

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