Changeset

1149:72fc323050c1

stanza_router: Remove unnecessary directed presence handling
author Waqas Hussain <waqas20@gmail.com>
date Fri, 15 May 2009 06:34:08 +0500
parents 1148:5dafbc0ded34
children 1150:d71a8f28f18b
files core/stanza_router.lua
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/core/stanza_router.lua	Fri May 15 06:31:32 2009 +0500
+++ b/core/stanza_router.lua	Fri May 15 06:34:08 2009 +0500
@@ -117,11 +117,6 @@
 				return; -- FIXME what should we do here? does this work with subdomains?
 			end
 		end
-		if origin.type == "c2s" and stanza.name == "presence" and to ~= nil and not(origin.roster[to_bare] and (origin.roster[to_bare].subscription == "both" or origin.roster[to_bare].subscription == "from")) then -- directed presence
-			origin.directed = origin.directed or {};
-			origin.directed[to] = true;
-			--t_insert(origin.directed, to); -- FIXME does it make more sense to add to_bare rather than to?
-		end
 		if not to then
 			core_handle_stanza(origin, stanza);
 		elseif hosts[to] and hosts[to].type == "local" then -- directed at a local server