14.03.2019, 22:25
(This post was last modified: 14.03.2019, 22:26 by Erwin van der Zwart.)
Hi Roger,
I think it's a UNIX microtime format with milliseconds included.
I would try to do this to make it os.time() format (seconds):
BR,
Erwin
I think it's a UNIX microtime format with milliseconds included.
I would try to do this to make it os.time() format (seconds):
Code:
value = 1552587707032
value = math.floor((value/1000))
log(value) --> 1552587707
BR,
Erwin