Skip to content

Commit

Permalink
[fix] remove odd utf-8 char, whitespace cleared automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaagie committed Oct 21, 2013
1 parent 52ecd52 commit f23bbba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/http-proxy/passes/web-incoming.js
Expand Up @@ -109,11 +109,11 @@ web_o = Object.keys(web_o).map(function(pass) {

// Error Handler
proxyReq.on('error', function(err){
if(server) {
server.emit('error', err);
if(server) {
server.emit('error', err);
}
else { 
clb(err);
else {
clb(err);
}
});

Expand Down

1 comment on commit f23bbba

@cronopio
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you sir, was my bad.

Please sign in to comment.