mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-08 03:02:03 +01:00
Drop method deprecated in Express 3.x.
This commit is contained in:
parent
90373964d3
commit
9d1274abaf
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ CachingMiddleware.prototype = new function () {
|
||||||
var old_res = {};
|
var old_res = {};
|
||||||
|
|
||||||
var supportsGzip =
|
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 path = require('url').parse(req.url).path;
|
||||||
var cacheKey = (new Buffer(path)).toString('base64').replace(/[\/\+=]/g, '');
|
var cacheKey = (new Buffer(path)).toString('base64').replace(/[\/\+=]/g, '');
|
||||||
|
|
Loading…
Reference in a new issue