mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-06-23 01:37:14 +08:00
fix(sitemap): increase limit
This commit is contained in:
parent
bee2b2873e
commit
1e28ba291e
@ -21,8 +21,8 @@ export async function getLinksFromSitemap(
|
||||
crawlId: string,
|
||||
sitemapsHit: Set<string>,
|
||||
): Promise<number> {
|
||||
if (sitemapsHit.size >= 5) {
|
||||
logger.warn("Sitemap limit of 5 hit, not hitting this one.");
|
||||
if (sitemapsHit.size >= 10) {
|
||||
logger.warn("Sitemap limit hit, not hitting this one.");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user