Update extraction-service.ts

This commit is contained in:
Nicolas 2025-01-14 01:59:52 -03:00
parent 033e9bbf29
commit 2dc87a2e1c

View File

@ -256,7 +256,7 @@ export async function performExtraction(
step: ExtractStep.MULTI_ENTITY_SCRAPE, step: ExtractStep.MULTI_ENTITY_SCRAPE,
startedAt: Date.now(), startedAt: Date.now(),
finishedAt: Date.now(), finishedAt: Date.now(),
discoveredLinks: [], discoveredLinks: links,
}, },
], ],
}); });
@ -510,7 +510,7 @@ export async function performExtraction(
step: ExtractStep.EXTRACT, step: ExtractStep.EXTRACT,
startedAt: Date.now(), startedAt: Date.now(),
finishedAt: Date.now(), finishedAt: Date.now(),
discoveredLinks: [], discoveredLinks: links,
}, },
], ],
}); });