From 54944ff8077fcbbbf2e2ca10810def39c93fdc59 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 17 Oct 2017 05:47:06 +0200 Subject: pubsub: Distinguish internal representation of node config from XEP-0060 form (util.pubsub should be protocol-agnostic) --- util/pubsub.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'util/pubsub.lua') 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) -- cgit v1.2.3