# HG changeset patch # User Waqas Hussain # Date 1242358973 -18000 # Node ID 279f79389189c3c328e3acda72cdc0c921f008e5 # Parent 14f3eb0e778791c9ff8cf848aff1f3bf662df651 stanza_router: Removed some unnecessary code diff -r 14f3eb0e7787 -r 279f79389189 core/stanza_router.lua --- a/core/stanza_router.lua Fri May 15 08:30:48 2009 +0500 +++ b/core/stanza_router.lua Fri May 15 08:42:53 2009 +0500 @@ -128,8 +128,6 @@ component_handle_stanza(origin, stanza); elseif hosts[host] and hosts[host].type == "component" then -- directed at a component component_handle_stanza(origin, stanza); - elseif origin.type == "c2s" and stanza.name == "presence" and stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then - handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza); elseif hosts[host] and hosts[host].type == "local" and stanza.name == "iq" and not resource then -- directed at bare JID core_handle_stanza(origin, stanza); else