search contentdom was checked in wrong way - fixed

pull/1/head
Michael Peter Christen 13 years ago
parent 0d32a766ed
commit 082831b9d6

@ -587,7 +587,7 @@ public final class RWIProcess extends Thread
}
// check content domain
if (this.query.contentdom != Classification.ContentDomain.ALL && page.url().getContentDomain() != this.query.contentdom) {
if (page.url().getContentDomain() != Classification.ContentDomain.ALL && page.url().getContentDomain() != this.query.contentdom) {
this.sortout++;
continue;
}

Loading…
Cancel
Save