diff --git a/src/providers/embeds/vidplay/common.ts b/src/providers/embeds/vidplay/common.ts index d19cc02..f10681a 100644 --- a/src/providers/embeds/vidplay/common.ts +++ b/src/providers/embeds/vidplay/common.ts @@ -9,7 +9,7 @@ export const referer = `${vidplayBase}/`; // Full credits to @Ciarands! export const getDecryptionKeys = async (ctx: EmbedScrapeContext): Promise => { - const res = await ctx.fetcher('https://github.com/Ciarands/vidsrc-keys/blob/main/keys.json'); + const res = await ctx.proxiedFetcher('https://github.com/Ciarands/vidsrc-keys/blob/main/keys.json'); const regex = /"rawLines":\s*\[([\s\S]*?)\]/; const rawLines = res.match(regex)?.[1]; if (!rawLines) throw new Error('No keys found');