diff --git a/metager/app/Models/Result.php b/metager/app/Models/Result.php index 48700a0704aa36b820379e290e7e3371e622c6f0..554623d5a63cfcad509361b5801ef321b71b1ef8 100644 --- a/metager/app/Models/Result.php +++ b/metager/app/Models/Result.php @@ -294,7 +294,10 @@ class Result { if ( ($this->strippedHost !== "" && (in_array($this->strippedHost, $metager->getDomainBlacklist()) || - in_array($this->strippedLink, $metager->getUrlBlacklist()))) + in_array($this->strippedLink, $metager->getUrlBlacklist()) || + in_array($this->strippedLink . "|" . app(SearchSettings::class)->q, $metager->getUrlBlacklist()) + ) + ) ) { return true; } else {