Skip to content

Commit

Permalink
fix(Solr): Fixed fuzzy/proximity integer
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Oct 9, 2023
1 parent bc72039 commit 7d72a02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function handle(bool $disabled = false)
$this->criteria, # a simple criteria array to filter search results
$this->getItemPerPage(), # result count
$this->searchInTags, # Search in tags too,
10000000,
1,
$this->getPage()
);
} else {
Expand All @@ -71,7 +71,7 @@ public function handle(bool $disabled = false)
$this->criteria, # a simple criteria array to filter search results
$this->getItemPerPage(), # result count
$this->searchInTags, # Search in tags too,
10000000,
2,
$this->getPage()
);
}
Expand Down

0 comments on commit 7d72a02

Please sign in to comment.