No longer shows timestamps on High Sierra
Closed this issue · 4 comments
Brlgomez commented
It just shows blank after @
Pezmc commented
It seems, at least in macOS High Sierra that dates have increased in size by a factor of 10.
For example:
- 2017-10-18 10:29:34, is now stored as 530011774000000000.
- To get the true time, you need to divide by 1000000000
- And then add 2001-01-01 in UNIX time (978307200).
i.e.
- 530011774000000000 / 1000000000 = 530011774
- 530011774 + 978307200 = 1508318974
- 1508318974 => Wednesday, 18 October 2017 09:29:34
PeterKaminski09 commented
Working on this right now. Thanks for opening the issue
virpatel524 commented
Thank you for your dedication. Keep up the good work.
… On Saturday, Oct 21, 2017 at 2:26 PM, Peter Kaminski ***@***.*** ***@***.***)> wrote:
Working on this right now. Thanks for opening the issue
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub (#15 (comment)), or mute the thread (https://github.com/notifications/unsubscribe-auth/AGcEMqlB__fXVRRnNR6atizhoY8Eqmaxks5sujdQgaJpZM4PqMPg).
PeterKaminski09 commented
Think I have this fixed. Let me know if this doesn't work for you