Remove double-quotes from all prev published_at values in DB; now that new published_at values no longer stored with double-quotes, ugly incantation of moment.js no longer needed and warning message in log is avoided; closes issue #13

This commit is contained in:
jkaplon 2015-07-21 13:46:06 -04:00
parent 41e739aeec
commit dd28b44c19

View File

@ -147,7 +147,7 @@ app.get('/core/:id', function(req, res){
// Loop over elements in rows array, convert ugly UTC times to pretty local times.
rows.forEach(function(row){
var localDtTm = moment.utc((row.published_at || "").replace(/-/g,"/").replace(/[TZ]/g," ")).toDate();
var localDtTm = moment.utc(row.published_at);
localDtTm = moment(localDtTm).tz('America/New_York').format('MM-DD-YYYY HH:mm:ss');
row.published_at = localDtTm;
});