Commit 21521e83 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[JM-1203] Fixed via simple patch from community (thanks dapatrick!)

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/openfire_3_5_1@10258 b35dd754-fafc-0310-a699-88a17e54d16e
parent 066c8623
......@@ -249,7 +249,7 @@ public class RoutingTableImpl extends BasicModule implements RoutingTable, Clust
}
}
}
else if (jid.getDomain().contains(serverName)) {
else if (jid.getDomain().contains(serverName) && hasComponentRoute(jid)) {
// Packet sent to component hosted in this server
// First check if the component is being hosted in this JVM
RoutableChannelHandler route = localRoutingTable.getRoute(jid.getDomain());
......
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