Use consistent Cache-Tag format

This commit is contained in:
Michael Jackson
2019-01-01 18:03:54 -08:00
parent 25d86e9c95
commit 99312c75b0
3 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ function serveStaticFile(req, res) {
'Cache-Control': 'public, max-age=31536000, immutable', // 1 year
'Last-Modified': req.entry.lastModified,
ETag: etag(req.entry.content),
'Cache-Tag': tags.join(',')
'Cache-Tag': tags.join(', ')
})
.send(req.entry.content);
}