mod_pubsub, mod_pep_plus: Rename simple_itemstore to reflect that it's based on archive storage

This commit is contained in:
Kim Alvefur 2017-10-12 01:31:08 +02:00
parent cb3160b5f9
commit 25b5ef2889
3 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ local function simple_itemstore(username)
module:log("debug", "new simple_itemstore(%q, %q)", username, node);
known_nodes_map:set(username, node, true);
local archive = module:open_store("pep_"..node, "archive");
return lib_pubsub.simple_itemstore(archive, config, username, node, false);
return lib_pubsub.archive_itemstore(archive, config, username, node, false);
end
end