diff --git a/packages/content-handler/src/websites/scrapingBee-handler.ts b/packages/content-handler/src/websites/scrapingBee-handler.ts index a7818a685..2b28faecf 100644 --- a/packages/content-handler/src/websites/scrapingBee-handler.ts +++ b/packages/content-handler/src/websites/scrapingBee-handler.ts @@ -10,7 +10,7 @@ export class ScrapingBeeHandler extends ContentHandler { shouldPreHandle(url: string): boolean { const u = new URL(url) - const hostnames = ['nytimes.com', 'news.google.com'] + const hostnames = ['nytimes.com', 'news.google.com', 'fool.ca'] return hostnames.some((h) => u.hostname.endsWith(h)) }