mod_pep: Only resend last item on successful subscription

This commit is contained in:
Kim Alvefur 2018-08-05 01:53:48 +02:00
parent 31443e5e2e
commit 474f5af7c9

View file

@ -362,9 +362,10 @@ local function update_subscriptions(recipient, service_name, nodes)
end
for node in nodes - current do
service:add_subscription(node, recipient, recipient, { presence = true });
if service:add_subscription(node, recipient, recipient, { presence = true }) then
resend_last_item(recipient, node, service);
end
end
if nodes == empty_set or nodes:empty() then
nodes = nil;