Drop method deprecated in Express 3.x.

pull/1049/head
Chad Weider 2012-10-09 01:32:21 -07:00
parent 90373964d3
commit 9d1274abaf
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ CachingMiddleware.prototype = new function () {
var old_res = {};
var supportsGzip =
req.header('Accept-Encoding', '').indexOf('gzip') != -1;
(req.get('Accept-Encoding') || '').indexOf('gzip') != -1;
var path = require('url').parse(req.url).path;
var cacheKey = (new Buffer(path)).toString('base64').replace(/[\/\+=]/g, '');