all repos — website @ 8e7a851d2d5372f6f36afec731bef2af5d6ee602

My website

Inline variable
Alan Pearce alan@alanpearce.eu
Wed, 13 Sep 2023 07:02:32 +0200
commit

8e7a851d2d5372f6f36afec731bef2af5d6ee602

parent

c48a92fdd4d9ab9ec96c1cff73af84b9cdd1a96d

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/index.tssrc/index.ts
@@ -86,10 +86,10 @@ fetch: async function (request) {     const pathname = new URL(request.url).pathname;
     const file = files.get(pathname);
     if (file) {
-      const ims = parseIfModifiedSinceHeader(
-        request.headers.get("if-modified-since"),
-      );
-      if (ims >= file?.mtime.getTime()) {
+      if (
+        parseIfModifiedSinceHeader(request.headers.get("if-modified-since")) >=
+        file?.mtime.getTime()
+      ) {
         return new Response("", { status: 304 });
       }
     }