diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-08-08 08:10:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-08-08 08:10:11 +0100 |
commit | 4c736a4317ed7f4213ec01feb0714472d5431b11 (patch) | |
tree | 9b8860e4b839e3d53925502b7b5c5078e4c4fa4b /plugins | |
parent | 3d1ebe5a9c97e65be4428e4d9fb3f8fbd1f7e9b2 (diff) | |
download | prosody-4c736a4317ed7f4213ec01feb0714472d5431b11.tar.gz prosody-4c736a4317ed7f4213ec01feb0714472d5431b11.zip |
mod_muc: Fix incorrect variable usage [luacheck]
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 5a25cf81..270a7516 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -362,7 +362,7 @@ function room_mt:handle_kickable(origin, stanza) -- luacheck: ignore 212 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"}) |