Skip to content

Commit

Permalink
*) Bugfix for transferURL:
Browse files Browse the repository at this point in the history
   URL list index was not incremented properly.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@723 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
theli committed Sep 14, 2005
1 parent beefddf commit dff9660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/yacy/yacyClient.java
Expand Up @@ -644,7 +644,7 @@ private static HashMap transferURL(yacySeed targetSeed, plasmaCrawlLURL.Entry[]
if (urls[i] != null) {
resource = urls[i].toString();
if (resource != null) {
post.put("url" + i, resource);
post.put("url" + urlc, resource);
urlc++;
}
}
Expand Down

0 comments on commit dff9660

Please sign in to comment.