code review

This commit is contained in:
gorhill 2015-03-09 20:04:07 -04:00
parent f362dff643
commit cad5a6cbf6
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ vAPI.i18n.renderElapsedTimeToString = function(tstamp) {
if ( value < 2 ) {
return vAPI.i18n('elapsedOneHourAgo');
}
if ( value < (24 * 60) ) {
if ( value < 24 ) {
return vAPI.i18n('elapsedManyHoursAgo').replace('{{value}}', Math.floor(value).toLocaleString());
}
value /= 24;