diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-22 14:13:28 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-22 14:13:28 +0100 |
commit | ccb4cfcc212b83e1528115aae7095e710e550dbd (patch) | |
tree | 5f73452a499023b782cc82062159f56720e8374e /plugins | |
parent | 2e06e8e75d004d079ac264abc3f086051c4b62fb (diff) | |
download | prosody-ccb4cfcc212b83e1528115aae7095e710e550dbd.tar.gz prosody-ccb4cfcc212b83e1528115aae7095e710e550dbd.zip |
MUC: Log when denying entry to locked room
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/muc.lib.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index cc147d19..df4c50bb 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -496,6 +496,7 @@ function room_mt:handle_to_occupant(origin, stanza) -- PM, vCards, etc self.locked = nil; -- Older groupchat protocol doesn't lock end elseif self.locked then -- Deny entry + module:log("debug", "Room is locked, denying entry"); origin.send(st.error_reply(stanza, "cancel", "item-not-found")); return; end |