diff options
author | Kim Alvefur <zash@zash.se> | 2018-06-01 10:20:19 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-06-01 10:20:19 +0200 |
commit | 3f649eb349dd50a2add4fe10e74874cb7bf39489 (patch) | |
tree | 7c2f86f8f4ba57a82706a2b96654d815be92f391 | |
parent | b0ec38334127be965c9c6e9b1482427291c0cb91 (diff) | |
download | prosody-3f649eb349dd50a2add4fe10e74874cb7bf39489.tar.gz prosody-3f649eb349dd50a2add4fe10e74874cb7bf39489.zip |
MUC: Get acting occupant into a local variable for easier access
-rw-r--r-- | plugins/muc/moderated.lib.lua | 3 |
1 files changed, 2 insertions, 1 deletions
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 |