diff options
author | Kim Alvefur <zash@zash.se> | 2018-06-01 08:47:07 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-06-01 08:47:07 +0200 |
commit | 2a3e98fc42dc817a32c4de6454e7d8945a313ad1 (patch) | |
tree | 371e1083f1a6b5e35782a47ad6a0550ff4584e7f | |
parent | 157bc12c6b0a3c66f583321fdbf27f1458468f48 (diff) | |
download | prosody-2a3e98fc42dc817a32c4de6454e7d8945a313ad1.tar.gz prosody-2a3e98fc42dc817a32c4de6454e7d8945a313ad1.zip |
MUC: Include a human-readable error message when not allowed to change subject
-rw-r--r-- | plugins/muc/subject.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/subject.lib.lua b/plugins/muc/subject.lib.lua index e2fe9b51..b842e777 100644 --- a/plugins/muc/subject.lib.lua +++ b/plugins/muc/subject.lib.lua @@ -101,7 +101,7 @@ module:hook("muc-occupant-groupchat", function(event) room:save(); return true; else - event.origin.send(st.error_reply(stanza, "auth", "forbidden")); + event.origin.send(st.error_reply(stanza, "auth", "forbidden", "You are not allowed to change the subject")); return true; end end |