*) peer-search on Network.html now is case-insensitive

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3374 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
hydrox 18 years ago
parent c016fcb10f
commit 5af76fccd7

@ -298,7 +298,7 @@ public class Network {
long myValue=0, nextValue=0, prevValue=0, nextPPM=0, myPPM=0;
Pattern peerSearchPattern = null;
if(post.containsKey("search")) {
peerSearchPattern = Pattern.compile(post.get("match", ""));
peerSearchPattern = Pattern.compile(post.get("match", ""), Pattern.CASE_INSENSITIVE);
}
while (e.hasMoreElements() && conCount < maxCount) {
seed = (yacySeed) e.nextElement();

Loading…
Cancel
Save