Updated url being passed.

This commit is contained in:
Ross Healy
2024-02-07 19:54:19 +00:00
parent 47c587926e
commit f08949a912

View File

@@ -18,9 +18,10 @@ namespace lottery_co_uk_scraper
foreach (string url in urls)
{
List<string> extractedUrls = await URLExtractor.ExtractUrlsAsync(url);
foreach (string extractedUrl in extractedUrls)
{
await Lotto.GetLottoNumbers(url, client);
await Lotto.GetLottoNumbers(extractedUrl, client);
}
}
}