From 8a97d634a4c5c5d046424c227a4b26bb9f486481 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 6 Jan 2022 01:18:35 +0100 Subject: util.pubsub: Fix item store resize to "max" Previously this would end up passing the "max" directly to the underlying storage. --- plugins/mod_pep.lua | 1 + plugins/mod_pubsub/mod_pubsub.lua | 1 + 2 files changed, 2 insertions(+) (limited to 'plugins') diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index bcd529ca..f2a25e00 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -221,6 +221,7 @@ function get_pep_service(username) ["access_model"] = "presence"; ["send_last_published_item"] = "on_sub_and_presence"; }; + max_items = max_max_items; autocreate_on_publish = true; autocreate_on_subscribe = false; diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua index be460f72..4af16a6f 100644 --- a/plugins/mod_pubsub/mod_pubsub.lua +++ b/plugins/mod_pubsub/mod_pubsub.lua @@ -224,6 +224,7 @@ function module.load() node_defaults = { ["persist_items"] = true; }; + max_items = max_max_items; nodestore = node_store; itemstore = create_simple_itemstore; broadcaster = simple_broadcast; -- cgit v1.2.3