aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-05-30 14:18:55 -1000
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-05-30 14:18:55 -1000
commitd38a331636e3fd38ef60c926272452f0f3d7f7cf (patch)
tree5635cdc52d622033350c84886a9e7d99644aee9e
parent7fdca5304e8322ddc09a35e4018e86984dde9ff4 (diff)
downloadpatchfoo-d38a331636e3fd38ef60c926272452f0f3d7f7cf.tar.gz
patchfoo-d38a331636e3fd38ef60c926272452f0f3d7f7cf.zip
Show gathering times in local time zone
-rw-r--r--lib/render-msg.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index 003c1bf..93e8f28 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -375,7 +375,7 @@ RenderMsg.prototype.link1 = function (link, cb) {
function dateTime(d) {
var date = new Date(d.epoch)
- return date.toUTCString()
+ return date.toString()
// d.bias
// d.epoch
}