search contentdom was checked in wrong way - fixed

This commit is contained in:
Michael Peter Christen 2012-05-20 01:23:02 +02:00
parent 0d32a766ed
commit 082831b9d6

View File

@ -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;
}