1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 01:27:00 +00:00

Prefix relative dates with "in" where appropriate

This commit is contained in:
Mark McDowall 2015-05-07 16:39:48 -07:00
parent df4604057e
commit b73413f189

View file

@ -32,7 +32,7 @@ module.exports = {
}
if (date.isAfter(moment())) {
return date.fromNow(true);
return 'in ' + date.fromNow(true);
}
if (date.isBefore(moment().add('years', -1))) {