(assistant) Fix logic error in filtering related domains

This commit is contained in:
Viktor Lofgren 2023-12-16 18:44:25 +01:00
parent d715b1f9ca
commit 3da38d0483

View File

@ -259,7 +259,7 @@ public class SimilarDomainsService {
// or not very interesting // or not very interesting
if (!domainResult.indexed() if (!domainResult.indexed()
&& !domainResult.active() && !domainResult.active()
&& domainResult.relatedness() < 50) && domainResult.relatedness() > 50)
{ {
return true; return true;
} }