# HG changeset patch # User Matthew Wild # Date 1517600102 0 # Node ID 3b86134c56ea4319ac2ca72b28fe6fa1ee4627ff # Parent 6c2c2fc4b8ddd4370a5f8c5960f493003ff32049 mod_pubsub: Some variable renames for clarity diff -r 6c2c2fc4b8dd -r 3b86134c56ea 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;