Skip to content

Commit

Permalink
Fix Domino issue (crash) by upgrading Turndown to 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed May 22, 2024
1 parent 7c099ca commit baad3ae
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"superjson": "^2.2.1",
"tesseract.js": "^5.1.0",
"tiktoken": "^1.0.15",
"turndown": "^7.1.3",
"turndown": "^7.2.0",
"uuid": "^9.0.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
Expand Down
2 changes: 1 addition & 1 deletion src/modules/browse/browse.router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async function workerPuppeteer(
result.error = '[Puppeteer] Empty content';
}
} catch (error: any) {
result.error = '[Puppeteer] ' + (error?.message || error?.toString() || 'Unknown evaluate error');
result.error = '[Puppeteer] ' + (error?.message || error?.toString() || 'Unknown content error');
}

// get a screenshot of the page
Expand Down

0 comments on commit baad3ae

Please sign in to comment.