Remove article limit

This commit is contained in:
myrmidex 2025-06-29 17:15:17 +02:00
parent 948bca3f0a
commit 4162c23717

View file

@ -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) {