From e606ec6f63f42f409bc8229f9c33c0e3414d2467 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 25 Nov 2018 20:29:36 -0700 Subject: [PATCH] Fix ISO timestamps hopefully --- core/database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/database.js b/core/database.js index 55fdb1c7..7193adee 100644 --- a/core/database.js +++ b/core/database.js @@ -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) {