diff --git a/src/providers/sources/autoembed.ts b/src/providers/sources/autoembed.ts index 40861d8..0859fc0 100644 --- a/src/providers/sources/autoembed.ts +++ b/src/providers/sources/autoembed.ts @@ -27,7 +27,11 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis for (const stream of fileData) { const url = stream.file; if (!url) continue; - embeds.push({ embedId: `autoembed-${stream.title.toLowerCase().trim()}`, url }); + const lang = stream.title.toLowerCase().trim(); + // only return english + if (lang.includes('english') && url) { + embeds.push({ embedId: `autoembed-${lang}`, url }); + } } return {