MUC: Hook the correct event
authorKim Alvefur <zash@zash.se>
Sat, 23 Dec 2017 06:17:11 +0100
changeset 8489 c50101b527bf
parent 8488 0e02c6de5c02
child 8490 91f6815de26a
MUC: Hook the correct event
plugins/muc/muc.lib.lua
--- a/plugins/muc/muc.lib.lua	Sat Dec 09 19:35:08 2017 +0100
+++ b/plugins/muc/muc.lib.lua	Sat Dec 23 06:17:11 2017 +0100
@@ -172,10 +172,10 @@
 end
 
 -- Strip delay tags claiming to be from us
-module:hook("muc-occupant-message", function (event)
+module:hook("muc-occupant-groupchat", function (event)
 	local stanza = event.stanza;
-	local to = stanza.attr.to;
-	local room_jid = self.jid;
+	local room = event.room;
+	local room_jid = room.jid;
 
 	stanza:maptags(function (child)
 		if child.name == "delay" and child.attr["xmlns"] == "urn:xmpp:delay" then