diff options
Diffstat (limited to 'src/date.js')
| -rw-r--r-- | src/date.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/date.js b/src/date.js index 75edf6d3..d0e24abc 100644 --- a/src/date.js +++ b/src/date.js @@ -516,8 +516,7 @@ function DateSetMilliseconds(ms) { var t = LOCAL_DATE_VALUE(this); ms = ToNumber(ms); var time = MakeTime(LOCAL_HOUR(this), LOCAL_MIN(this), LOCAL_SEC(this), ms); - SET_LOCAL_DATE_VALUE(this, MakeDate(LOCAL_DAYS(this), time)); - return this; + return SET_LOCAL_DATE_VALUE(this, MakeDate(LOCAL_DAYS(this), time)); } |
