diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-08-07 13:32:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-08-07 13:32:11 +0100 |
commit | e76887da66f2327aafb9d2f61ae4a7cbab4a41b4 (patch) | |
tree | 8018066bb82313e0d40c9658111c8363908c7496 | |
parent | 5a5354e4223796fe682282d82ad3e6342d11c41c (diff) | |
download | prosody-e76887da66f2327aafb9d2f61ae4a7cbab4a41b4.tar.gz prosody-e76887da66f2327aafb9d2f61ae4a7cbab4a41b4.zip |
MUC: Suppress error text when participants are kicked due to error in semi-anon rooms (fixes #563)
This prevents information leaks (such as the occupant's server domain) which may
be included in error messages.
-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 d12f24b1..5a25cf81 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 then + if text and room:get_whois() == "anyone" then error_message = error_message..": "..text; end occupant:set_session(real_jid, st.presence({type="unavailable"}) |