From 4162c23717f9d45883544b6b24c294f8522c4729 Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sun, 29 Jun 2025 17:15:17 +0200 Subject: [PATCH] Remove article limit --- app/Services/Articles/ArticleFetcher.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) {