diff --git a/packages/api/src/utils/parser.ts b/packages/api/src/utils/parser.ts index f8716978e..7489b7373 100644 --- a/packages/api/src/utils/parser.ts +++ b/packages/api/src/utils/parser.ts @@ -444,7 +444,10 @@ export const isProbablyNewsletter = async (html: string): Promise => { } // Check if this is a newsletter from revue - if (dom.querySelectorAll('img[src*="getrevue.co"]').length > 0) { + if ( + dom.querySelectorAll('img[src*="getrevue.co"], img[src*="revue.email"]') + .length > 0 + ) { const getrevueUrl = revueNewsletterHref(dom) if (getrevueUrl) { return true