If we haven't synced in 10 years, it's "never"
This is the value that's displayed on startup now
This commit is contained in:
parent
a857b14b8a
commit
e999beafd7
|
@ -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'
|
||||
|
||||
|
|
Loading…
Reference in New Issue