fix(v1): don't fail on doc = null

This commit is contained in:
Gergo Moricz 2024-08-30 20:28:18 +02:00
parent 71dab56e36
commit 6a6b487474
1 changed files with 2 additions and 0 deletions

View File

@ -292,6 +292,8 @@ export function legacyScrapeOptions(x: ScrapeOptions): PageOptions {
}
export function legacyDocumentConverter(doc: any): Document {
if (doc === null || doc === undefined) return doc;
if (doc.metadata) {
if (doc.metadata.screenshot) {
doc.screenshot = doc.metadata.screenshot;