Software /
code /
prosody
Comparison
plugins/mod_presence.lua @ 1641:af962e6ae781
Fixed: Outbound subscription requests silently dropped (regression in hg:7f17d0d00fbb)
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 07 Aug 2009 15:30:47 +0500 |
parent | 1626:7f17d0d00fbb |
child | 1731:38d87682cb4a |
comparison
equal
deleted
inserted
replaced
1635:33d087466767 | 1641:af962e6ae781 |
---|---|
163 return count; | 163 return count; |
164 end | 164 end |
165 | 165 |
166 function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza) | 166 function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza) |
167 local node, host = jid_split(from_bare); | 167 local node, host = jid_split(from_bare); |
168 if node == origin.username and host == origin.host then return; end -- No self contacts | 168 if to_bare == origin.username.."@"..origin.host then return; end -- No self contacts |
169 local st_from, st_to = stanza.attr.from, stanza.attr.to; | 169 local st_from, st_to = stanza.attr.from, stanza.attr.to; |
170 stanza.attr.from, stanza.attr.to = from_bare, to_bare; | 170 stanza.attr.from, stanza.attr.to = from_bare, to_bare; |
171 log("debug", "outbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare); | 171 log("debug", "outbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare); |
172 if stanza.attr.type == "subscribe" then | 172 if stanza.attr.type == "subscribe" then |
173 -- 1. route stanza | 173 -- 1. route stanza |