mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua
author Kim Alvefur <zash@zash.se>
Mon, 28 Jun 2021 04:12:47 +0200
changeset 4604 98864dffb231
parent 3423 aed47ebd26d3
permissions -rw-r--r--
mod_pubsub_summary: Fix conversion of emphasis _like this_ per XEP-0393

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