Fix incorrect file existence check
Alan Pearce alan@alanpearce.eu
Wed, 13 Sep 2023 11:12:50 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M src/index.ts → src/index.ts
@@ -74,7 +74,7 @@ file: File | undefined, statusCode: number = 200, extraHeaders: Record<string, string> = {}, ): Promise<Response> { - if (file && file.handle.exists()) { + if (file && (await file.handle.exists())) { return new Response(file.handle, { headers: { "last-modified": file.mtime.toUTCString(),