mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_pep_plus: Broadcast only the last item (thanks lovetox)
This commit is contained in:
parent
fb51acd842
commit
30bb916e56
1 changed files with 3 additions and 4 deletions
|
@ -256,11 +256,10 @@ local function get_caps_hash_from_presence(stanza, current)
|
|||
end
|
||||
|
||||
local function resend_last_item(jid, node, service)
|
||||
local ok, items = service:get_items(node, jid);
|
||||
local ok, id, item = service:get_last_item(node, jid);
|
||||
if not ok then return; end
|
||||
for _, id in ipairs(items) do
|
||||
service.config.broadcaster("items", node, { [jid] = true }, items[id]);
|
||||
end
|
||||
if not id then return; end
|
||||
service.config.broadcaster("items", node, { [jid] = true }, item);
|
||||
end
|
||||
|
||||
local function update_subscriptions(recipient, service_name, nodes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue