From d7f37740fe8d1b46271410d6cc5df31aabc6959f Mon Sep 17 00:00:00 2001 From: Seb Ringrose Date: Wed, 20 Aug 2025 16:35:01 +0100 Subject: [PATCH] fix(file): clone response before sending --- lib/http/handlers/file.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/handlers/file.ts b/lib/http/handlers/file.ts index 5255c7df..6791f395 100644 --- a/lib/http/handlers/file.ts +++ b/lib/http/handlers/file.ts @@ -42,6 +42,6 @@ export const file = async ( }); return function staticHandler() { - return response; + return response.clone(); }; };