From 6ac445bf02ac9949d6155d77913080b3b974f8ee Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sat, 12 Oct 2024 17:57:25 -0700 Subject: [PATCH] fix: add content type to localhost icon fetching --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 78d1176..261c090 100644 --- a/src/index.js +++ b/src/index.js @@ -811,6 +811,7 @@ export default { if (fetchIcoCdn && fetchIcoCdn.status === 200) { let resp = new Response(fetchIcoCdn.body, { headers: { + 'content-type': types.icon, ...DEFAULT_CORS_HEADERS } });