Fix ISO timestamps hopefully

This commit is contained in:
Bryan Ashby 2018-11-25 20:29:36 -07:00
parent f471fd0ebe
commit e606ec6f63
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ function getISOTimestampString(ts) {
}
ts = moment(ts);
}
return ts.format('YYYY-MM-DDTHH:mm:ss.SSS[Z]');
return ts.format('YYYY-MM-DDTHH:mm:ss.SSS');
}
function sanatizeString(s) {