Skip to content

Commit

Permalink
Close connection when requesting favicon.ico
Browse files Browse the repository at this point in the history
  • Loading branch information
yrashk committed Dec 23, 2010
1 parent 45e8a2c commit ecddcbd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app.js
Expand Up @@ -23,6 +23,7 @@ var STATIC = {
var handler = function(request, response) {
if (request.path == "/favicon.ico") {
response.writeHead(404,{});
response.end();
return;
}

Expand Down

0 comments on commit ecddcbd

Please sign in to comment.