mod_muc: Fix incorrect variable usage [luacheck]
authorMatthew Wild <mwild1@gmail.com>
Wed, 08 Aug 2018 08:10:11 +0100
changeset 9150 e2bf4cd6d7a3
parent 9149 6bd3602a70e2
child 9151 a474c94d0b0a
mod_muc: Fix incorrect variable usage [luacheck]
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"})