diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-17 05:47:06 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-17 05:47:06 +0200 |
commit | 6ff9ebcd2b66badc69e1db2ba888cc937a855615 (patch) | |
tree | 06f9e43f6658a61fe031728272facf5a381cd9f2 /util | |
parent | 6667da24991cacd4921052982f8ec243ffed6610 (diff) | |
download | prosody-6ff9ebcd2b66badc69e1db2ba888cc937a855615.tar.gz prosody-6ff9ebcd2b66badc69e1db2ba888cc937a855615.zip |
pubsub: Distinguish internal representation of node config from XEP-0060 form (util.pubsub should be protocol-agnostic)
Diffstat (limited to 'util')
-rw-r--r-- | util/pubsub.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua index a10f9a84..9397484a 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -5,13 +5,14 @@ local service = {}; local service_mt = { __index = service }; local default_config = { __index = { - itemstore = function (config, _) return cache.new(tonumber(config["pubsub#max_items"])) end; + itemstore = function (config, _) return cache.new(config["max_items"]) end; broadcaster = function () end; get_affiliation = function () end; capabilities = {}; } }; local default_node_config = { __index = { - ["pubsub#max_items"] = "20"; + ["persist_items"] = false; + ["max_items"] = 20; } }; local function new(config) |