Skip to content

Commit d66fd2d

Browse files
Harrison IfeanyichukwuHarrison Ifeanyichukwu
Harrison Ifeanyichukwu
authored and
Harrison Ifeanyichukwu
committed
fix: change timestamp to milliseconds
1 parent 0929b39 commit d66fd2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Traits/Parser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private function filterPropertyValue(
2727

2828
case 'lastUpdatedTimestamp':
2929
case 'createdAtTimestamp':
30-
$value = strtotime($value);
30+
$value = strtotime($value) * 1000;
3131
break;
3232

3333
case 'textContent':

0 commit comments

Comments
 (0)