mod_pep: Remove PEP subscriptions on getting a presence unsubscribe.

This commit is contained in:
Waqas Hussain 2010-11-28 15:02:56 +05:00
parent 8a3189b145
commit 2fd7797f35

View file

@ -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);