aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-08-05 01:56:36 +0200
committerKim Alvefur <zash@zash.se>2018-08-05 01:56:36 +0200
commitf182e76b40f3ebbd62bf09f6887b2c5f6974cddf (patch)
treed1493d793434fef3fd9d4cee6d2fd7ad8ac6d658 /plugins
parent3672f78750854a3ad33d6cbb0cfcc0173d3df086 (diff)
downloadprosody-f182e76b40f3ebbd62bf09f6887b2c5f6974cddf.tar.gz
prosody-f182e76b40f3ebbd62bf09f6887b2c5f6974cddf.zip
mod_pep: Note which subscriptions are presence based as subscription option
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_pep.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 3b818c8d..42a01305 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -353,7 +353,7 @@ local function update_subscriptions(recipient, service_name, nodes)
end
for node in nodes - current do
- service:add_subscription(node, recipient, recipient);
+ service:add_subscription(node, recipient, recipient, { presence = true });
resend_last_item(recipient, node, service);
end