mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Fixed: Self-references could be added to rosters via presence subscriptions
This commit is contained in:
parent
2cf8f39ec1
commit
a9648ac8e3
1 changed files with 1 additions and 0 deletions
|
@ -165,6 +165,7 @@ end
|
|||
|
||||
function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza)
|
||||
local node, host = jid_split(from_bare);
|
||||
if node == origin.username and host == origin.host then return; end -- No self contacts
|
||||
local st_from, st_to = stanza.attr.from, stanza.attr.to;
|
||||
stanza.attr.from, stanza.attr.to = from_bare, to_bare;
|
||||
log("debug", "outbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue