[dist minor] 2 space indents next time @samalba

This commit is contained in:
indexzero 2013-12-26 23:50:19 -08:00
parent 8332e74420
commit 7e8041d2b6

View File

@ -334,10 +334,10 @@ HttpProxy.prototype.proxyRequest = function (req, res, buffer) {
// Set the headers of the client response
if (res.sentHeaders !== true) {
Object.keys(response.headers).forEach(function (key) {
res.setHeader(key, response.headers[key]);
});
res.writeHead(response.statusCode);
Object.keys(response.headers).forEach(function (key) {
res.setHeader(key, response.headers[key]);
});
res.writeHead(response.statusCode);
}
function ondata(chunk) {