# HG changeset patch # User Matthew Wild # Date 1681738310 -3600 # Node ID f6577cdb1d911a945d27279a521287b0189a418c # Parent c35f3c1762b508560473b57ae2bcaa0a0b176c0e mod_muc_rtbl: Use correct occupant object There is no 'occupant' property for this event. diff -r c35f3c1762b5 -r f6577cdb1d91 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;