From 10fa5d3c72c7c78b66e2f4ce7628a8b4ce0b5b4b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 16 Mar 2025 19:18:30 -0700 Subject: [PATCH] pass accept header --- src/utils/proxy/cached-fetch.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/proxy/cached-fetch.js b/src/utils/proxy/cached-fetch.js index b2d97cfb2..aad51cc94 100644 --- a/src/utils/proxy/cached-fetch.js +++ b/src/utils/proxy/cached-fetch.js @@ -18,6 +18,7 @@ export default async function cachedFetch(url, duration, ua) { if (ua) { options.headers = { "User-Agent": ua, + Accept: "application/json", }; } const [, , data] = await httpProxy(url, options);