Software /
code /
prosody
Diff
core/stanza_router.lua @ 1149:72fc323050c1
stanza_router: Remove unnecessary directed presence handling
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 15 May 2009 06:34:08 +0500 |
parent | 1148:5dafbc0ded34 |
child | 1152:4d95e8078405 |
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