fixed developer.notion special case

This commit is contained in:
rafaelsideguide 2024-10-11 10:54:59 -03:00
parent 0d48f4513a
commit c1f98d0371

View File

@ -5,7 +5,7 @@ export async function handleCustomScraping(
url: string
): Promise<{ scraper: string; url: string; waitAfterLoad?: number, pageOptions?: { scrollXPaths?: string[] } } | null> {
// Check for Readme Docs special case
if (text.includes('<meta name="readme-deploy"')) {
if (text.includes('<meta name="readme-deploy"') && !url.includes('developers.notion.com')) {
Logger.debug(
`Special use case detected for ${url}, using Fire Engine with wait time 1000ms`
);