Skip to content

Commit

Permalink
better defaulttime (the yacybar uses it)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1459 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Jan 26, 2006
1 parent 6c02f88 commit 0f84591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htroot/index.java
Expand Up @@ -149,7 +149,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
// prepare search order
final String order = post.get("order", "");
final int count = Integer.parseInt(post.get("count", "10"));
final long searchtime = 1000 * Long.parseLong(post.get("time", "1"));
final long searchtime = 1000 * Long.parseLong(post.get("time", "10"));
final boolean yacyonline = ((yacyCore.seedDB != null) &&
(yacyCore.seedDB.mySeed != null) &&
(yacyCore.seedDB.mySeed.getAddress() != null));
Expand Down

0 comments on commit 0f84591

Please sign in to comment.