Commit 49f6f734 authored by Matthew Taylor's avatar Matthew Taylor

Merge pull request #327 from mewtaylor/issue/gh-325-caching

Fix GH-325: Make template caching strong
parents dddc867c a53aa67d
......@@ -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);
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment