Skip to content

Commit

Permalink
getting unexpected number
Browse files Browse the repository at this point in the history
  • Loading branch information
cesine committed Apr 23, 2012
1 parent dece77d commit e95ce26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Expand Up @@ -35,7 +35,7 @@ app.get('/getip',function(req,res){
var returnobj = {};
returnobj.ip = ip_address;
res.writeHead(200, {'content-type': 'application/json'});
res.write(ip_address);
res.write('"'+ip_address+'"');
res.end();
});
app.post('/view/main.html',function(req,res){
Expand Down

0 comments on commit e95ce26

Please sign in to comment.