Software /
code /
prosody
Changeset
1642:8ba5752851dc
Merge with 0.5
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 07 Aug 2009 11:32:47 +0100 |
parents | 1640:726ac98306d8 (current diff) 1641:af962e6ae781 (diff) |
children | 1644:002af1bb797a 1656:cf9220a364cd |
files | |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_presence.lua Wed Aug 05 20:00:07 2009 +0100 +++ b/plugins/mod_presence.lua Fri Aug 07 11:32:47 2009 +0100 @@ -165,7 +165,7 @@ 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 + if to_bare == origin.username.."@"..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);