From 8ef88de74838b5dc136c53358556bc3359ee61d7 Mon Sep 17 00:00:00 2001 From: Heimdall Date: Wed, 1 Apr 2026 07:12:23 +0000 Subject: [PATCH] Fix cacheKey Request constructor - don't pass original request --- src/worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker.js b/src/worker.js index ff1c107..26d1d3a 100644 --- a/src/worker.js +++ b/src/worker.js @@ -520,7 +520,7 @@ export default { request.headers.get('Cache-Control') === 'no-cache'; // 캐시 키 생성 - const cacheKey = new Request(`https://cache.internal/${customer}${filePath}`, request); + const cacheKey = new Request(`https://cache.internal/${customer}${filePath}`); const cache = caches.default; // 1. 캐시에서 먼저 확인 (바이패스가 아닌 경우)