Software /
code /
prosody
Comparison
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 |
comparison
equal
deleted
inserted
replaced
8326:12408867bc86 | 8327:0b561f8bc790 |
---|---|
38 end | 38 end |
39 end | 39 end |
40 | 40 |
41 local function simple_itemstore(config, node) | 41 local function simple_itemstore(config, node) |
42 local archive = module:open_store("pubsub_"..node, "archive"); | 42 local archive = module:open_store("pubsub_"..node, "archive"); |
43 return lib_pubsub.archive_itemstore(archive, config, nil, node, expose_publisher); | 43 return lib_pubsub.archive_itemstore(archive, config, nil, node); |
44 end | 44 end |
45 | 45 |
46 if enable_persistence then | 46 if enable_persistence then |
47 module:log("warn", "Item persistence is an experimental feature. Note that ownership information is lost on restart.") | 47 module:log("warn", "Item persistence is an experimental feature. Note that ownership information is lost on restart.") |
48 else | 48 else |