mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 09:31:01 +01:00
code review
This commit is contained in:
parent
f362dff643
commit
cad5a6cbf6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue