Remove article limit

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

View file

@ -26,7 +26,6 @@ private static function fetchArticles(): Collection
$urls = collect($matches[1] ?? []) $urls = collect($matches[1] ?? [])
->unique() ->unique()
->take(10) // Limit to 10 articles
->map(fn ($path) => 'https://www.vrt.be' . $path) ->map(fn ($path) => 'https://www.vrt.be' . $path)
->toArray(); ->toArray();