aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/lock.lib.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-06-03 14:46:57 +0200
committerKim Alvefur <zash@zash.se>2018-06-03 14:46:57 +0200
commit5e5a66ffa7ff4d3c57e0d07660f118ac63f24a60 (patch)
tree2f36e2d55b183a7571a671d5a5a77a98b4bca0d8 /plugins/muc/lock.lib.lua
parent8286e6344d13e59b090cdff204e61750dd7a5a29 (diff)
downloadprosody-5e5a66ffa7ff4d3c57e0d07660f118ac63f24a60.tar.gz
prosody-5e5a66ffa7ff4d3c57e0d07660f118ac63f24a60.zip
MUC: Enable room locking by default to gather feedback (#328)
Diffstat (limited to 'plugins/muc/lock.lib.lua')
-rw-r--r--plugins/muc/lock.lib.lua2
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)