This commit is contained in:
Ari Lazier 2016-05-24 08:25:44 -07:00
parent d71d80f277
commit 47a279cc67
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ struct NativeAccessor {
ObjectType date = Value::validated_to_date(ctx, value, "Property"); ObjectType date = Value::validated_to_date(ctx, value, "Property");
double milliseconds = Value::to_number(ctx, date); double milliseconds = Value::to_number(ctx, date);
int64_t seconds = milliseconds / 1000; int64_t seconds = milliseconds / 1000;
int32_t nanoseconds = (milliseconds - seconds * 1000) * 1000000; int32_t nanoseconds = ((int64_t)milliseconds % 1000) * 1000000;
return Timestamp(seconds, nanoseconds); return Timestamp(seconds, nanoseconds);
} }
static ValueType from_timestamp(ContextType ctx, Timestamp ts) { static ValueType from_timestamp(ContextType ctx, Timestamp ts) {