fix for search in case where local peer has no local seed address in

portal mode
pull/1/head
orbiter 10 years ago
parent 5be352da99
commit 72c2bc5189

@ -330,7 +330,7 @@ public class RemoteSearch extends Thread {
assert solrQuery != null;
// check own peer status
if (event.peers.mySeed() == null || event.peers.mySeed().getIPs().size() == 0) { return null; }
if (event.peers.mySeed() == null) { return null; }
// prepare threads
Thread solr = new Thread() {
@Override

Loading…
Cancel
Save