mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_pep_plus: Skip getting PEP service instance for sessions that have not touched PEP
This commit is contained in:
parent
1325ac697f
commit
cab3f5abe5
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue