mod_pubsub: Remove use of non-existent fields
authorKim Alvefur <zash@zash.se>
Mon, 09 Oct 2017 00:58:45 +0200
changeset 8311 ab189d3f55d1
parent 8310 94860b5733d3
child 8312 5281c479955a
mod_pubsub: Remove use of non-existent fields
plugins/mod_pubsub/pubsub.lib.lua
--- a/plugins/mod_pubsub/pubsub.lib.lua	Mon Oct 09 00:11:11 2017 +0200
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Mon Oct 09 00:58:45 2017 +0200
@@ -329,14 +329,13 @@
 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 @@
 			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 @@
 			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;