From a53aa67d217938098e4e8525116977505a216bc0 Mon Sep 17 00:00:00 2001 From: Matthew Taylor Date: Thu, 14 Jan 2016 15:54:10 -0500 Subject: [PATCH] Make template caching strong Fixes #325 --- server/handler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/handler.js b/server/handler.js index f093625d8..0a2858664 100644 --- a/server/handler.js +++ b/server/handler.js @@ -23,7 +23,7 @@ function Handler (route) { res.set({ 'Content-Type': 'text/html', 'Cache-Control': 'public, max-age=31536000', - 'Etag': 'W/"' + checksum + '"' + 'Etag': '"' + checksum + '"' }); res.send(output); };