You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Time64 decoding expects to get a floating point value >= 0. Javascript (not surprisingly I suppose =) treats 0.0 as 0 and passes that off to the decode. We attempt to split that float into seconds / microseconds and generate a date object from that. This fails when it gets 0 which can result in some interesting dates being shown in the UI.
We need a bit of safeguarding in our handling of the value that Time64's decode function takes.
The text was updated successfully, but these errors were encountered:
The Time64 decoding expects to get a floating point value >= 0. Javascript (not surprisingly I suppose =) treats
0.0
as0
and passes that off to the decode. We attempt to split that float into seconds / microseconds and generate a date object from that. This fails when it gets0
which can result in some interesting dates being shown in the UI.We need a bit of safeguarding in our handling of the value that Time64's decode function takes.
The text was updated successfully, but these errors were encountered: