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
when i want to transfer a small unix timestamp 57600000 to time,it throws an exception “month out of range”. I read code and find the reason, the dateparse thinks 57600000 as a yyyymmdd string, and the "mm" is 00, so it throws “month out of range”, and when i use 57600101 ,it parse the time to 5760-01-01 00:00:00.
The text was updated successfully, but these errors were encountered:
when i want to transfer a small unix timestamp 57600000 to time,it throws an exception “month out of range”. I read code and find the reason, the dateparse thinks 57600000 as a yyyymmdd string, and the "mm" is 00, so it throws “month out of range”, and when i use 57600101 ,it parse the time to 5760-01-01 00:00:00.
The text was updated successfully, but these errors were encountered: