Avoid orphaned cache files from breaking the caching layer.
parent
6fd73ecfda
commit
57d0a2e803
|
@ -54,7 +54,7 @@ CachingMiddleware.prototype = new function () {
|
|||
var modifiedSince = (req.headers['if-modified-since']
|
||||
&& new Date(req.headers['if-modified-since']));
|
||||
var lastModifiedCache = !error && stats.mtime;
|
||||
if (lastModifiedCache) {
|
||||
if (lastModifiedCache && responseCache[cacheKey]) {
|
||||
req.headers['if-modified-since'] = lastModifiedCache.toUTCString();
|
||||
} else {
|
||||
delete req.headers['if-modified-since'];
|
||||
|
|
Loading…
Reference in New Issue