If we haven't synced in 10 years, it's "never"

This is the value that's displayed on startup now
pull/145/head
Peter Hutterer 2019-07-16 14:49:30 +10:00
parent a857b14b8a
commit e999beafd7
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,8 @@ def relative_time(seconds):
return f'{int(seconds/H)} hours ago'
if seconds < 4 * WEEK:
return f'{int(seconds/DAY)} days ago'
if seconds > 10 * 365 * DAY:
return 'never'
return 'a long time ago'