mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_pep_plus: Skip over roster metadata (version, pending) entry
This commit is contained in:
parent
15e6420834
commit
bed081dc63
1 changed files with 5 additions and 3 deletions
|
@ -348,9 +348,11 @@ module:hook("iq-result/bare/disco", function(event)
|
|||
hash_map[ver] = notify; -- update hash map
|
||||
if is_self then
|
||||
for jid, item in pairs(origin.roster) do -- for all interested contacts
|
||||
if item.subscription == "both" or item.subscription == "from" then
|
||||
if not recipients[jid] then recipients[jid] = {}; end
|
||||
update_subscriptions(contact, jid, notify);
|
||||
if jid then
|
||||
if item.subscription == "both" or item.subscription == "from" then
|
||||
if not recipients[jid] then recipients[jid] = {}; end
|
||||
update_subscriptions(contact, jid, notify);
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue