diff options
author | Kim Alvefur <zash@zash.se> | 2017-12-23 06:17:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-12-23 06:17:11 +0100 |
commit | 1e543ef1918cf5ca0b3aa1569074db05f78f1fc0 (patch) | |
tree | b0aa871195af05b6403750b52594954e8c380b58 /plugins/muc/muc.lib.lua | |
parent | 818d4e73233d91011d1e35bc588206d85512517a (diff) | |
download | prosody-1e543ef1918cf5ca0b3aa1569074db05f78f1fc0.tar.gz prosody-1e543ef1918cf5ca0b3aa1569074db05f78f1fc0.zip |
MUC: Hook the correct event
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-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 |