mod_pep_plus: Broadcast only the last item (thanks lovetox)

This commit is contained in:
Kim Alvefur 2017-11-07 02:32:45 +01:00
parent fb51acd842
commit 30bb916e56

View file

@ -256,11 +256,10 @@ local function get_caps_hash_from_presence(stanza, current)
end end
local function resend_last_item(jid, node, service) 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 if not ok then return; end
for _, id in ipairs(items) do if not id then return; end
service.config.broadcaster("items", node, { [jid] = true }, items[id]); service.config.broadcaster("items", node, { [jid] = true }, item);
end
end end
local function update_subscriptions(recipient, service_name, nodes) local function update_subscriptions(recipient, service_name, nodes)