diff options
author | ThibG <thib@sitedethib.com> | 2020-01-26 23:13:48 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-26 23:13:48 +0100 |
commit | 42d2a915e4aa31533032e37aaa46354cee2386da (patch) | |
tree | b8022ad85fed21d21ed0f6e307d24f60dbe5eb07 /app/views/directories/index.html.haml | |
parent | 401f32f9eedf9f41c097ee01c1f6203eae568663 (diff) |
Change last_status_at to be a date, not datetime (#12966)
* Return last_status_at as date, not datetime * Fix relative timestamp for dates when delay is inferior to 1 day * Also fix public directory * Fix error when last_status_at isn't set
Diffstat (limited to 'app/views/directories/index.html.haml')
-rw-r--r-- | app/views/directories/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/directories/index.html.haml b/app/views/directories/index.html.haml index 6bf2ec81e..333a257e1 100644 --- a/app/views/directories/index.html.haml +++ b/app/views/directories/index.html.haml @@ -47,7 +47,7 @@ %small= t('accounts.followers', count: account.followers_count).downcase .accounts-table__count - if account.last_status_at.present? - %time.time-ago{ datetime: account.last_status_at.iso8601, title: l(account.last_status_at) }= l account.last_status_at + %time.time-ago{ datetime: account.last_status_at.to_date.iso8601, title: l(account.last_status_at.to_date) }= l account.last_status_at.to_date - else = t('accounts.never_active') |