diff --git a/app/Http/Integrations/Spoonacular/Requests/FindRecipesByIngredients.php b/app/Http/Integrations/Spoonacular/Requests/FindRecipesByIngredients.php index a0cf09e..a2d680b 100644 --- a/app/Http/Integrations/Spoonacular/Requests/FindRecipesByIngredients.php +++ b/app/Http/Integrations/Spoonacular/Requests/FindRecipesByIngredients.php @@ -38,7 +38,7 @@ class FindRecipesByIngredients extends Request implements Cacheable public function defaultQuery(): array { return [ - 'ingredients' => join(",", $this->ingredients), + 'ingredients' => join(",+", $this->ingredients), 'ranking' => $this->ranking, 'number' => $this->number, ];