diff options
author | Kim Alvefur <zash@zash.se> | 2021-06-09 15:58:49 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-06-09 15:58:49 +0200 |
commit | c880dee2af4b1f5e184c3a3c7f70036694d9c1f8 (patch) | |
tree | f0bcecd7be12b067e31e7aa05354fc17a2d9cc64 /plugins/mod_pubsub/pubsub.lib.lua | |
parent | 351a197fbdd99b11505c283ae8c3f414bee38885 (diff) | |
download | prosody-c880dee2af4b1f5e184c3a3c7f70036694d9c1f8.tar.gz prosody-c880dee2af4b1f5e184c3a3c7f70036694d9c1f8.zip |
mod_pubsub,mod_pep: Support "max" as 'pubsub#max_items'
Fixes #1643
API change: The argument to archive_itemstore() changes type to integer
Diffstat (limited to 'plugins/mod_pubsub/pubsub.lib.lua')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index b53e0689..e7fa715d 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -83,7 +83,7 @@ local node_config_form = dataform { }; { type = "text-single"; - datatype = "xs:integer"; + datatype = "pubsub:integer-or-max"; name = "max_items"; var = "pubsub#max_items"; label = "Max # of items to persist"; @@ -801,10 +801,9 @@ local function create_encapsulating_item(id, payload) return item; end -local function archive_itemstore(archive, config, user, node) - module:log("debug", "Creation of archive itemstore for node %s with config %q", node, config); +local function archive_itemstore(archive, max_items, user, node) + module:log("debug", "Creation of archive itemstore for node %s with limit %d", node, max_items); local get_set = {}; - local max_items = config["max_items"]; function get_set:items() -- luacheck: ignore 212/self local data, err = archive:find(user, { limit = tonumber(max_items); |