Skip to content

Commit

Permalink
pass missing parameter value
Browse files Browse the repository at this point in the history
  • Loading branch information
okaufmann committed May 9, 2022
1 parent c8d0a15 commit c692bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MeiliSearch/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function searchUsingApi($query, $filters = [], $options = [])
try {
$searchResults = $this->getIndex()->search($query, $filters, $options);
} catch (\Exception $e) {
$this->handleMeiliSearchException($e);
$this->handleMeiliSearchException($e, 'searchUsingApi');
}

return collect($searchResults->getHits())->map(function ($hit) {
Expand Down

0 comments on commit c692bff

Please sign in to comment.