aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/mod_pep.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 4036870f..e94ba4bb 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -362,8 +362,9 @@ local function update_subscriptions(recipient, service_name, nodes)
end
for node in nodes - current do
- service:add_subscription(node, recipient, recipient, { presence = true });
- resend_last_item(recipient, node, service);
+ 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