fix(sitemap): increase limit to 20

This commit is contained in:
Móricz Gergő 2025-01-23 11:29:49 +01:00
parent 1e28ba291e
commit 434a435a4b

View File

@ -21,7 +21,7 @@ export async function getLinksFromSitemap(
crawlId: string,
sitemapsHit: Set<string>,
): Promise<number> {
if (sitemapsHit.size >= 10) {
if (sitemapsHit.size >= 20) {
logger.warn("Sitemap limit hit, not hitting this one.");
return 0;
}