"gpasq" wrote:
That's a millisecond time.
The part that's missing is that can't just divide the milliseconds by 1000. The JSON/Regex conversions converts the MS to a string. You can't convert the string to an integer, it's too big. You have to convert it to a float, _then_ divide by 1000, then convert back to an int. Finally you can load the date with the now-converted-to-integer seconds.
Since you're already converting it to a string, why not just trim the last three digits off of the string before converting it back to an int?