# HG changeset patch # User Matthew Wild # Date 1638793576 0 # Node ID a1fe59c06c48fcfb51b1e61f3e6a8bb8100c53c2 # Parent 181738ae4117666fb4dd000dc0994b9851568f0e mod_muc_rtbl: Fix typo in variable name in previous commit (thanks luacheck) diff -r 181738ae4117 -r a1fe59c06c48 mod_muc_rtbl/mod_muc_rtbl.lua --- a/mod_muc_rtbl/mod_muc_rtbl.lua Mon Dec 06 12:24:07 2021 +0000 +++ b/mod_muc_rtbl/mod_muc_rtbl.lua Mon Dec 06 12:26:16 2021 +0000 @@ -95,7 +95,7 @@ local from_bare = jid.bare(event.stanza.attr.from); local affiliation = event.room:get_affiliation(from_bare); - if affiliation and affilition ~= "none" then + if affiliation and affiliation ~= "none" then -- Skip check for affiliated users return; end