# HG changeset patch # User Waqas Hussain # Date 1242351248 -18000 # Node ID 72fc323050c131aab056c04d735ceea64d5dc481 # Parent 5dafbc0ded34fc82285ec6b1c1add5812bce74f9 stanza_router: Remove unnecessary directed presence handling diff -r 5dafbc0ded34 -r 72fc323050c1 core/stanza_router.lua --- 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