Commit 0cdab8d7 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Fixed error when answering error due to unknown namespace.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1531 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7a565c7a
...@@ -195,7 +195,7 @@ public class IQRouter extends BasicModule { ...@@ -195,7 +195,7 @@ public class IQRouter extends BasicModule {
// Locate a route to the sender of the IQ and ask it to process // Locate a route to the sender of the IQ and ask it to process
// the packet. Use the routingTable so that routes to remote servers // the packet. Use the routingTable so that routes to remote servers
// may be found // may be found
routingTable.getRoute(packet.getFrom()).process(packet); routingTable.getRoute(packet.getFrom()).process(reply);
} }
catch (NoSuchRouteException e) { catch (NoSuchRouteException e) {
// No root was found so try looking for local sessions that have never // No root was found so try looking for local sessions that have never
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment