diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-09 00:58:45 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-09 00:58:45 +0200 |
commit | 4f7c6ed3062cec890fd9ce31a3ee1d51effbe703 (patch) | |
tree | 30c7bb92dcb69d5857fdde4d08f7696890ac8c49 /plugins/mod_pubsub/pubsub.lib.lua | |
parent | 0097294539894085c2f2ffe3e5f22b819eb75e17 (diff) | |
download | prosody-4f7c6ed3062cec890fd9ce31a3ee1d51effbe703.tar.gz prosody-4f7c6ed3062cec890fd9ce31a3ee1d51effbe703.zip |
mod_pubsub: Remove use of non-existent fields
Diffstat (limited to 'plugins/mod_pubsub/pubsub.lib.lua')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index ececf9e1..d4a9eb13 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -329,14 +329,13 @@ end local function simple_itemstore(archive, config, user, node, expose_publisher) module:log("debug", "Creation of itemstore for node %s with config %s", node, config); local get_set = {}; - function get_set:items() - local store = self.store; + function get_set:items() -- luacheck: ignore 212/self local data, err = archive:find(user); if not data then module:log("error", "Unable to get items: %s", err); return true; end - module:log("debug", "Listed items %s from store %s", data, store); + module:log("debug", "Listed items %s", data); return function() local id, payload, when, publisher = data(); if id == nil then @@ -346,8 +345,7 @@ local function simple_itemstore(archive, config, user, node, expose_publisher) return id, item; end; end - function get_set:get(key) - local store = self.store; + function get_set:get(key) -- luacheck: ignore 212/self local data, err = archive:find(user, { key = key; -- Get the last item with that key, if the archive doesn't deduplicate @@ -359,15 +357,14 @@ local function simple_itemstore(archive, config, user, node, expose_publisher) return nil, err; end local id, payload, when, publisher = data(); - module:log("debug", "Get item %s (published at %s by %s) from store %s", id, when, publisher, store); + module:log("debug", "Get item %s (published at %s by %s)", id, when, publisher); if id == nil then return nil; end return create_encapsulating_item(id, payload, publisher, expose_publisher); end - function get_set:set(key, value) - local store = self.store; - module:log("debug", "Set item %s to %s for %s in store %s", key, value, node, store); + function get_set:set(key, value) -- luacheck: ignore 212/self + module:log("debug", "Set item %s to %s for %s", key, value, node); local data, err; if value ~= nil then local publisher = value.attr.publisher; |