diff options
author | Kim Alvefur <zash@zash.se> | 2018-06-03 14:46:57 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-06-03 14:46:57 +0200 |
commit | 818570c6b1ddeef5d070fe02be9e9c1a6fccb418 (patch) | |
tree | 2f36e2d55b183a7571a671d5a5a77a98b4bca0d8 /plugins/muc | |
parent | 586e8747b9e30311a30e684f4d6e845af3886a4b (diff) | |
download | prosody-818570c6b1ddeef5d070fe02be9e9c1a6fccb418.tar.gz prosody-818570c6b1ddeef5d070fe02be9e9c1a6fccb418.zip |
MUC: Enable room locking by default to gather feedback (#328)
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/lock.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/lock.lib.lua b/plugins/muc/lock.lib.lua index 764142db..062ab615 100644 --- a/plugins/muc/lock.lib.lua +++ b/plugins/muc/lock.lib.lua @@ -9,7 +9,7 @@ local st = require "util.stanza"; -local lock_rooms = module:get_option_boolean("muc_room_locking", false); +local lock_rooms = module:get_option_boolean("muc_room_locking", true); local lock_room_timeout = module:get_option_number("muc_room_lock_timeout", 300); local function lock(room) |