Skip to content

Commit

Permalink
fixed a bug in remote search with remote search tracker
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3565 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Apr 12, 2007
1 parent fb6b21b commit 2e052eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htroot/yacy/search.java
Expand Up @@ -257,7 +257,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
searchProfile.put("time", trackerHandle);
sb.remoteSearches.add(searchProfile);
TreeSet handles = (TreeSet) sb.remoteSearchTracker.get(client);
if (handles == null) handles = new TreeSet(kelondroBase64Order.enhancedCoder);
if (handles == null) handles = new TreeSet();
handles.add(trackerHandle);
sb.remoteSearchTracker.put(client, handles);

Expand Down

0 comments on commit 2e052eb

Please sign in to comment.