Fix qry for open/closed statuses, allOk msgs ignored, hard-code on 'Open' and 'Closed' apparently sqlite is case-sensitive by default.

This commit is contained in:
jkaplon 2015-09-12 12:30:14 -04:00
parent df881fa389
commit a3990d708f

View File

@ -70,6 +70,7 @@ app.get('/', function(req, res){
var devIndexQry =
"select status, published_at " +
"from Alerts " +
"where status in ('Open', 'Closed') " +
"order by published_at desc " +
"limit 2"
db.all(devIndexQry, function(err, rows){