diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-05-30 14:18:55 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-05-30 14:18:55 -1000 |
commit | d38a331636e3fd38ef60c926272452f0f3d7f7cf (patch) | |
tree | 5635cdc52d622033350c84886a9e7d99644aee9e /lib | |
parent | 7fdca5304e8322ddc09a35e4018e86984dde9ff4 (diff) | |
download | patchfoo-d38a331636e3fd38ef60c926272452f0f3d7f7cf.tar.gz patchfoo-d38a331636e3fd38ef60c926272452f0f3d7f7cf.zip |
Show gathering times in local time zone
Diffstat (limited to 'lib')
-rw-r--r-- | lib/render-msg.js | 2 |
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 } |