mod_pep_plus: Skip getting PEP service instance for sessions that have not touched PEP

This commit is contained in:
Kim Alvefur 2018-04-11 15:52:13 +02:00
parent 1325ac697f
commit cab3f5abe5

View file

@ -268,7 +268,6 @@ local function resend_last_item(jid, node, service)
end
local function update_subscriptions(recipient, service_name, nodes)
local service = get_pep_service(service_name);
nodes = nodes or empty_set;
local service_recipients = recipients[service_name];
@ -286,6 +285,7 @@ local function update_subscriptions(recipient, service_name, nodes)
return;
end
local service = get_pep_service(service_name);
for node in current - nodes do
service:remove_subscription(node, recipient, recipient);
end