diff --git a/src/providers/embeds/streamtape.ts b/src/providers/embeds/streamtape.ts index 6e465c3..187f8e7 100644 --- a/src/providers/embeds/streamtape.ts +++ b/src/providers/embeds/streamtape.ts @@ -20,7 +20,13 @@ function embed(provider: { id: string; name: string; rank: number }) { name: provider.name, rank: provider.rank, async scrape(ctx) { - const embedHtml = await ctx.proxiedFetcher(ctx.url); + const response = await fetch(ctx.url, { + headers: { + Accept: 'text/html', + }, + }); + + const embedHtml = await response.text(); const match = embedHtml.match(/robotlink'\).innerHTML = (.*)'/); if (!match) throw new Error('No match found');