summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-01-26 23:13:48 +0100
committerEugen Rochko <eugen@zeonfederated.com>2020-01-26 23:13:48 +0100
commit42d2a915e4aa31533032e37aaa46354cee2386da (patch)
treeb8022ad85fed21d21ed0f6e307d24f60dbe5eb07 /app/views
parent401f32f9eedf9f41c097ee01c1f6203eae568663 (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')
-rw-r--r--app/views/directories/index.html.haml2
-rw-r--r--app/views/relationships/_account.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/directories/index.html.haml b/app/views/directories/index.html.haml
index 6bf2ec81ea9..333a257e127 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')
diff --git a/app/views/relationships/_account.html.haml b/app/views/relationships/_account.html.haml
index 6c22deb515e..af5a4aaf7d0 100644
--- a/app/views/relationships/_account.html.haml
+++ b/app/views/relationships/_account.html.haml
@@ -14,7 +14,7 @@
%small= t('accounts.followers', count: account.followers_count).downcase
%td.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
- else
\-
%small= t('accounts.last_active')