# HG changeset patch # User Matthew Wild # Date 1533712211 -3600 # Node ID e2bf4cd6d7a3eb8e1a6a6dff4838a56dab941476 # Parent 6bd3602a70e2f2d990ffa117e1040e58b3918031 mod_muc: Fix incorrect variable usage [luacheck] diff -r 6bd3602a70e2 -r e2bf4cd6d7a3 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Tue Aug 07 21:14:43 2018 +0100 +++ b/plugins/muc/muc.lib.lua Wed Aug 08 08:10:11 2018 +0100 @@ -362,7 +362,7 @@ if occupant == nil then return nil; end local type, condition, text = stanza:get_error(); local error_message = "Kicked: "..(condition and condition:gsub("%-", " ") or "presence error"); - if text and room:get_whois() == "anyone" then + if text and self:get_whois() == "anyone" then error_message = error_message..": "..text; end occupant:set_session(real_jid, st.presence({type="unavailable"})