*) Bugfix for transferURL:

URL list index was not incremented properly.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@723 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
theli 2005-09-14 07:20:14 +00:00
parent beefddf0e8
commit dff96601fe

View File

@ -644,7 +644,7 @@ public class yacyClient {
if (urls[i] != null) {
resource = urls[i].toString();
if (resource != null) {
post.put("url" + i, resource);
post.put("url" + urlc, resource);
urlc++;
}
}