aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/history.lib.lua
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2014-04-29 15:13:06 -0400
committerdaurnimator <quae@daurnimator.com>2014-04-29 15:13:06 -0400
commit184b7839475c004c55eb6bda315a69ae3ccaee95 (patch)
tree950dca0b03dc5eab45c1a1c42591ee2640b624cd /plugins/muc/history.lib.lua
parentc010a538d09eaa0a958590329f7fc7ae62e695a5 (diff)
downloadprosody-184b7839475c004c55eb6bda315a69ae3ccaee95.tar.gz
prosody-184b7839475c004c55eb6bda315a69ae3ccaee95.zip
plugins/muc: Move 'module:get_option_number("max_history_messages")' from mod_muc into history lib; remove from muclib exports
Diffstat (limited to 'plugins/muc/history.lib.lua')
-rw-r--r--plugins/muc/history.lib.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua
index 596f92da..1c14cf84 100644
--- a/plugins/muc/history.lib.lua
+++ b/plugins/muc/history.lib.lua
@@ -11,7 +11,8 @@ local gettime = os.time;
local datetime = require "util.datetime";
local st = require "util.stanza";
-local default_history_length, max_history_length = 20, math.huge;
+local default_history_length = 20;
+local max_history_length = module:get_option_number("max_history_messages", math.huge);
local function set_max_history_length(_max_history_length)
max_history_length = _max_history_length or math.huge;