aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/moderated.lib.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/muc/moderated.lib.lua')
-rw-r--r--plugins/muc/moderated.lib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/moderated.lib.lua b/plugins/muc/moderated.lib.lua
index 9b435bef..4d060a9d 100644
--- a/plugins/muc/moderated.lib.lua
+++ b/plugins/muc/moderated.lib.lua
@@ -86,7 +86,7 @@ module:hook("muc-voice-request", function(event)
local message = st.message({ type = "normal"; from = event.room.jid }):add_child(form:form()):up();
- event.room:broadcast(message, function (nick, occupant)
+ event.room:broadcast(message, function (_, occupant)
return occupant.role == "moderator";
end);
end