diff --git a/app/Services/Articles/ArticleFetcher.php b/app/Services/Articles/ArticleFetcher.php index 8f7ea39..81d27fa 100644 --- a/app/Services/Articles/ArticleFetcher.php +++ b/app/Services/Articles/ArticleFetcher.php @@ -26,8 +26,7 @@ private static function fetchArticles(): Collection $urls = collect($matches[1] ?? []) ->unique() - ->take(10) // Limit to 10 articles - ->map(fn($path) => 'https://www.vrt.be' . $path) + ->map(fn ($path) => 'https://www.vrt.be' . $path) ->toArray(); $responses = Http::pool(function ($pool) use ($urls) {