mod_muc_rtbl: Use correct occupant object
authorMatthew Wild <mwild1@gmail.com>
Mon, 17 Apr 2023 14:31:50 +0100
changeset 5356 f6577cdb1d91
parent 5355 c35f3c1762b5
child 5357 14b6397cd6de
mod_muc_rtbl: Use correct occupant object There is no 'occupant' property for this event.
mod_muc_rtbl/mod_muc_rtbl.lua
--- a/mod_muc_rtbl/mod_muc_rtbl.lua	Mon Apr 17 08:26:20 2023 +0200
+++ b/mod_muc_rtbl/mod_muc_rtbl.lua	Mon Apr 17 14:31:50 2023 +0100
@@ -153,7 +153,7 @@
 
 module:hook("muc-private-message", function(event)
 	local occupant = event.room:get_occupant_by_nick(event.stanza.attr.from);
-	local affiliation = event.room:get_affiliation(event.occupant.bare_jid);
+	local affiliation = event.room:get_affiliation(occupant.bare_jid);
 	if affiliation and affiliation ~= "none" then
 		-- Skip check for affiliated users
 		return;