fix crash if getFileCompressed fails (i.e. if /static/js is called)
parent
8be52df515
commit
7fbcffb30b
|
@ -131,7 +131,10 @@ exports.minify = function(req, res, next)
|
||||||
res.end();
|
res.end();
|
||||||
} else if (req.method == 'GET') {
|
} else if (req.method == 'GET') {
|
||||||
getFileCompressed(filename, contentType, function (error, content) {
|
getFileCompressed(filename, contentType, function (error, content) {
|
||||||
if(ERR(error)) return;
|
if(ERR(error, function(){
|
||||||
|
res.writeHead(500, {});
|
||||||
|
res.end();
|
||||||
|
})) return;
|
||||||
res.header("Content-Type", contentType);
|
res.header("Content-Type", contentType);
|
||||||
res.writeHead(200, {});
|
res.writeHead(200, {});
|
||||||
res.write(content);
|
res.write(content);
|
||||||
|
|
Loading…
Reference in New Issue