diff --git a/unfurler/src/index.ts b/unfurler/src/index.ts index 0bbcb32bc..6d209b140 100644 --- a/unfurler/src/index.ts +++ b/unfurler/src/index.ts @@ -315,5 +315,5 @@ function capitalize(str) { } function isSearchCrawler(useragent: string): boolean { - return /googlebot/i.test(useragent); + return /googlebot|applebot|bingbot/i.test(useragent); }