mod_pubsub: Some variable renames for clarity
authorMatthew Wild <mwild1@gmail.com>
Fri, 02 Feb 2018 19:35:02 +0000
changeset 8506 3b86134c56ea
parent 8505 6c2c2fc4b8dd
child 8507 80b8355c8b8b
mod_pubsub: Some variable renames for clarity
plugins/mod_pubsub/mod_pubsub.lua
--- a/plugins/mod_pubsub/mod_pubsub.lua	Fri Feb 02 19:31:03 2018 +0000
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Fri Feb 02 19:35:02 2018 +0000
@@ -26,15 +26,15 @@
 	return lib_pubsub.handle_pubsub_iq(event, service);
 end
 
-local function simple_itemstore(config, node)
-	local archive = module:open_store("pubsub_"..node, "archive");
-	return lib_pubsub.archive_itemstore(archive, config, nil, node);
+local function create_simple_itemstore(node_config, node_name)
+	local archive = module:open_store("pubsub_"..node_name, "archive");
+	return lib_pubsub.archive_itemstore(archive, node_config, nil, node_name);
 end
 
 if enable_persistence then
 	module:log("warn", "Item persistence is an experimental feature. Note that ownership information is lost on restart.")
 else
-	simple_itemstore = nil;
+	create_simple_itemstore = nil;
 end
 
 
@@ -202,7 +202,7 @@
 		autocreate_on_publish = autocreate_on_publish;
 		autocreate_on_subscribe = autocreate_on_subscribe;
 
-		itemstore = simple_itemstore;
+		itemstore = create_simple_itemstore;
 		broadcaster = simple_broadcast;
 		get_affiliation = get_affiliation;