diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-07-13 15:47:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-07-13 15:47:08 +0100 |
commit | 1f50e15c8e2a4d530df6318db7b1959e831230d6 (patch) | |
tree | a5cc2940ac88d722a500026be4508b7f427146ce /plugins/muc/history.lib.lua | |
parent | 1a0e7d5a10f2140d05dd54531c4ba1f35768ab93 (diff) | |
download | prosody-1f50e15c8e2a4d530df6318db7b1959e831230d6.tar.gz prosody-1f50e15c8e2a4d530df6318db7b1959e831230d6.zip |
MUC: Add sections in room config form
Diffstat (limited to 'plugins/muc/history.lib.lua')
-rw-r--r-- | plugins/muc/history.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 36b1b260..8a1163cf 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -59,7 +59,7 @@ module:hook("muc-config-form", function(event) desc = "Specify the number of previous messages sent to new users when they join the room"; value = tostring(get_defaulthistorymessages(event.room)) }); -end, 100-10); +end, 70-5); module:hook("muc-config-submitted/muc#roomconfig_historylength", function(event) if set_historylength(event.room, event.value) then |