diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-17 00:07:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-17 00:07:34 +0200 |
commit | 265dd06777d5f0c286d71bdd3ba39206ff3b8750 (patch) | |
tree | 4fc2280641e27aea1ac849179c83d8bad7f5f5ad /plugins/mod_pubsub/pubsub.lib.lua | |
parent | 3a65e49a4388c3aa8b092cc1df868926ee58d9c5 (diff) | |
download | prosody-265dd06777d5f0c286d71bdd3ba39206ff3b8750.tar.gz prosody-265dd06777d5f0c286d71bdd3ba39206ff3b8750.zip |
mod_pubsub: Remove expose_publisher argument since it is handled in broadcaster
Diffstat (limited to 'plugins/mod_pubsub/pubsub.lib.lua')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index e7481b4f..2f90d79e 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -328,16 +328,13 @@ function handlers.get_default(origin, stanza, default, service) return true; end -local function create_encapsulating_item(id, payload, publisher, expose_publisher) +local function create_encapsulating_item(id, payload) local item = st.stanza("item", { id = id, xmlns = xmlns_pubsub }); item:add_child(payload); - if expose_publisher then - item.attr.publisher = publisher; - end return item; end -local function archive_itemstore(archive, config, user, node, expose_publisher) +local function archive_itemstore(archive, config, user, node) module:log("debug", "Creation of itemstore for node %s with config %s", node, config); local get_set = {}; function get_set:items() -- luacheck: ignore 212/self @@ -355,7 +352,7 @@ local function archive_itemstore(archive, config, user, node, expose_publisher) if id == nil then return; end - local item = create_encapsulating_item(id, payload, publisher, expose_publisher); + local item = create_encapsulating_item(id, payload, publisher); return id, item; end); end @@ -375,7 +372,7 @@ local function archive_itemstore(archive, config, user, node, expose_publisher) if id == nil then return nil; end - return create_encapsulating_item(id, payload, publisher, expose_publisher); + return create_encapsulating_item(id, payload, publisher); end function get_set:set(key, value) -- luacheck: ignore 212/self local data, err; |