|
|
@ -304,10 +304,16 @@ public class Network {
|
|
|
|
seed = (yacySeed) e.nextElement();
|
|
|
|
seed = (yacySeed) e.nextElement();
|
|
|
|
if (seed != null) {
|
|
|
|
if (seed != null) {
|
|
|
|
if(post.containsKey("search")) {
|
|
|
|
if(post.containsKey("search")) {
|
|
|
|
|
|
|
|
boolean abort = true;
|
|
|
|
Matcher m = peerSearchPattern.matcher (seed.getName());
|
|
|
|
Matcher m = peerSearchPattern.matcher (seed.getName());
|
|
|
|
if (!m.find ()) {
|
|
|
|
if (m.find ()) {
|
|
|
|
continue;
|
|
|
|
abort = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m = peerSearchPattern.matcher (seed.hash);
|
|
|
|
|
|
|
|
if (m.find ()) {
|
|
|
|
|
|
|
|
abort = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (abort) continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prop.put(STR_TABLE_LIST + conCount + "_updatedProfile", 0);
|
|
|
|
prop.put(STR_TABLE_LIST + conCount + "_updatedProfile", 0);
|
|
|
|
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage", 0);
|
|
|
|
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage", 0);
|
|
|
|