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);