fix for host compare in case that the host is null. This happens when

doing a search in the intranet for file resources (they don't have a
host).
pull/1/head
Michael Peter Christen 12 years ago
parent 5132bf719c
commit 8e965ffd16

@ -3397,7 +3397,7 @@ public final class Switchboard extends serverSwitch {
Collection<DigestURI> urls = new ArrayList<DigestURI>();
while (i.hasNext()) {
url = i.next();
boolean islocal = url.getHost().contentEquals(startUrl.getHost());
boolean islocal = (url.getHost() == null && startUrl.getHost() == null) || (url.getHost() != null && startUrl.getHost() != null && url.getHost().contentEquals(startUrl.getHost()));
// add all external links or links to different page to crawler
if ( !islocal ) {// || (!startUrl.getPath().endsWith(url.getPath()))) {
urls.add(url);

Loading…
Cancel
Save