Skip to content

Commit

Permalink
Fix: new Date() returns wrong value
Browse files Browse the repository at this point in the history
  • Loading branch information
infosia committed Apr 29, 2015
1 parent 3574ebc commit e4d0d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/WTF/wtf/CurrentTime.cpp
Expand Up @@ -217,7 +217,7 @@ double currentTime()
lastTime = timeNow;
lastTickCount = tickCountNow;
}
return timeNow / 1000.0;
return timeNow;
}

#else
Expand Down

0 comments on commit e4d0d60

Please sign in to comment.