mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_pep: Only resend last item on successful subscription
This commit is contained in:
parent
31443e5e2e
commit
474f5af7c9
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue