diff options
-rw-r--r-- | plugins/muc/muc.lib.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 9f9ae13a..d9e9c48a 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -172,10 +172,10 @@ function room_mt:broadcast_message(stanza) 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 |