Diff

plugins/mod_pubsub/mod_pubsub.lua @ 8327:0b561f8bc790

mod_pubsub: Remove expose_publisher argument since it is handled in broadcaster
author Kim Alvefur <zash@zash.se>
date Tue, 17 Oct 2017 00:07:34 +0200
parent 8318:d0a7fc7614de
child 8328:29ef191c7bf9
line wrap: on
line diff
--- a/plugins/mod_pubsub/mod_pubsub.lua	Mon Oct 16 22:12:14 2017 +0200
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Tue Oct 17 00:07:34 2017 +0200
@@ -40,7 +40,7 @@
 
 local function simple_itemstore(config, node)
 	local archive = module:open_store("pubsub_"..node, "archive");
-	return lib_pubsub.archive_itemstore(archive, config, nil, node, expose_publisher);
+	return lib_pubsub.archive_itemstore(archive, config, nil, node);
 end
 
 if enable_persistence then