Skip to content
Snippets Groups Projects
Commit e34df850 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

fix updated ETags on generated views, return numeric mtime

parent 030d3640
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ function renderCachableView(req, res, template, options) {
if (config.get('env') === 'production') {
// res.setHeader('Cache-Control', 'public, max-age=' + (maxAge / 1000));
res.setHeader('Last-Modified', stat.mtime.toUTCString());
res.setHeader('ETag', util.format('"%s-%s-%s"', stat.size, stat.mtime, req.locale));
res.setHeader('ETag', util.format('"%s-%s-%s"', stat.size, Number(stat.mtime), req.locale));
} else {
res.setHeader('Cache-Control', 'no-store');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment