# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1514006231 -3600
# Node ID c50101b527bfcee0505b583482837b44185c0b46
# Parent  0e02c6de5c0218c94617e11983d198c7b4a834ce
MUC: Hook the correct event

diff -r 0e02c6de5c02 -r c50101b527bf 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