diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-05 01:53:48 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-05 01:53:48 +0200 |
commit | 85fc6826c7427195889abd7b7895c0edc18bd268 (patch) | |
tree | bd23a457ec6513a6bba767371cf67820c19a3db1 /plugins/mod_pep.lua | |
parent | 4eed4f2c33c04569225c2e6bf5e01451ba0c6631 (diff) | |
download | prosody-85fc6826c7427195889abd7b7895c0edc18bd268.tar.gz prosody-85fc6826c7427195889abd7b7895c0edc18bd268.zip |
mod_pep: Only resend last item on successful subscription
Diffstat (limited to 'plugins/mod_pep.lua')
-rw-r--r-- | plugins/mod_pep.lua | 5 |
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 |