Skip to content

Commit e081b80

Browse files
committed
Apply fix
1 parent c32fa23 commit e081b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Models/Attributes/Timestamp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ protected function convertWindowsIntegerTimeToDateTime(string|int|null $value =
190190
}
191191

192192
return (new DateTime)->setTimestamp(
193-
round($value / 10000000) - 11644473600
193+
(int) ($value / 10000000) - 11644473600
194194
);
195195
}
196196

0 commit comments

Comments
 (0)