Add content-type header and JSON.stringify to JSON responder.

This commit is contained in:
jkaplon 2016-01-13 18:44:33 -05:00
parent 566dae354d
commit 522c83b1db

View File

@ -184,7 +184,8 @@ app.get('/:loc/status', function(req, res) {
if(err) {
return winston.error('error running query', err);
}
res.send(result.rows[0].origjson);
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify(result.rows[0].origjson));
});
});
}