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 | af3f281a246020851c57df60ab61b6a9ef2a82b9 (patch) | |
tree | a5cc2940ac88d722a500026be4508b7f427146ce /plugins/muc/history.lib.lua | |
parent | 995815c6d323a41f44cc6bd2fa76fa9c248c105a (diff) | |
download | prosody-af3f281a246020851c57df60ab61b6a9ef2a82b9.tar.gz prosody-af3f281a246020851c57df60ab61b6a9ef2a82b9.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 |