fixed bug about auto-depth 0

see http://www.yacy-forum.de/viewtopic.php?p=19751#19751

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1988 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 60351fa3f7
commit ddc6394d9b

@ -424,7 +424,7 @@ public class plasmaCrawlProfile {
if (dp == null) {
return 0 < max;
} else {
return dp.depth < max;
return dp.depth <= max;
}
}
}
@ -437,7 +437,7 @@ public class plasmaCrawlProfile {
if (dp == null) {
return 0 < max;
} else {
return dp.count < max;
return dp.count <= max;
}
}
}

Loading…
Cancel
Save