From ae3dfd64dad722a3b7a4c5e1ccc0517a9f83dc17 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 1 Jun 2018 10:20:19 +0200 Subject: MUC: Get acting occupant into a local variable for easier access --- plugins/muc/moderated.lib.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/muc/moderated.lib.lua b/plugins/muc/moderated.lib.lua index 7f086555..644b84b6 100644 --- a/plugins/muc/moderated.lib.lua +++ b/plugins/muc/moderated.lib.lua @@ -68,8 +68,9 @@ end); module:hook("muc-voice-response", function(event) local actor = event.stanza.attr.from; local affected_occupant = event.room:get_occupant_by_real_jid(event.fields["muc#jid"]); + local occupant = event.occupant; - if event.occupant.role ~= "moderator" then + if occupant.role ~= "moderator" then return; end -- cgit v1.2.3