mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-12 07:29:04 +08:00
fix(sitemap): increase limit to 20
This commit is contained in:
parent
1e28ba291e
commit
434a435a4b
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user