Software /
code /
prosody
Changeset
8866:2c60ae791bdc
MUC: Enable room locking by default to gather feedback (#328)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 03 Jun 2018 14:46:57 +0200 |
parents | 8865:2a8bbfcb6868 |
children | 8867:c601c834bf01 |
files | plugins/muc/lock.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/lock.lib.lua Sat Jun 02 20:15:32 2018 +0200 +++ b/plugins/muc/lock.lib.lua Sun Jun 03 14:46:57 2018 +0200 @@ -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)