Fixed: Outbound subscription requests silently dropped (regression in hg:7f17d0d00fbb)

Fri, 07 Aug 2009 15:30:47 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Fri, 07 Aug 2009 15:30:47 +0500
changeset 1641
af962e6ae781
parent 1635
33d087466767
child 1642
8ba5752851dc
child 1643
4642dd87e390

Fixed: Outbound subscription requests silently dropped (regression in hg:7f17d0d00fbb)

plugins/mod_presence.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_presence.lua	Wed Aug 05 13:51:44 2009 +0100
+++ b/plugins/mod_presence.lua	Fri Aug 07 15:30:47 2009 +0500
@@ -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);

mercurial