mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_pep: Pass node/service objects to broadcaster when resending last item
This gives the broadcaster access to the node configuration, which is now important for itemreply. It probably also fixes a bug with the notify_* node config options?
This commit is contained in:
parent
2b72eb4211
commit
a0ac04c72b
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ local function resend_last_item(jid, node, service)
|
||||||
if ok and config.send_last_published_item ~= "on_sub_and_presence" then return end
|
if ok and config.send_last_published_item ~= "on_sub_and_presence" then return end
|
||||||
local ok, id, item = service:get_last_item(node, jid);
|
local ok, id, item = service:get_last_item(node, jid);
|
||||||
if not (ok and id) then return; end
|
if not (ok and id) then return; end
|
||||||
service.config.broadcaster("items", node, { [jid] = true }, item);
|
service.config.broadcaster("items", node, { [jid] = true }, item, true, service.nodes[node], service);
|
||||||
end
|
end
|
||||||
|
|
||||||
local function update_subscriptions(recipient, service_name, nodes)
|
local function update_subscriptions(recipient, service_name, nodes)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue