mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_pep: Remove PEP subscriptions on getting a presence unsubscribe.
This commit is contained in:
parent
8a3189b145
commit
2fd7797f35
1 changed files with 10 additions and 0 deletions
|
@ -145,6 +145,16 @@ module:hook("presence/bare", function(event)
|
|||
end
|
||||
elseif t == "unavailable" then
|
||||
if recipients[user] then recipients[user][stanza.attr.from] = nil; end
|
||||
elseif not self and t == "unsubscribe" then
|
||||
local from = jid_bare(stanza.attr.from);
|
||||
local subscriptions = recipients[user];
|
||||
if subscriptions then
|
||||
for subscriber in pairs(subscriptions) do
|
||||
if jid_bare(subscriber) == from then
|
||||
recipients[user][subscriber] = nil;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end, 10);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue