diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2020-05-04 01:48:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 18:48:13 +0200 |
commit | e223fd8c6190661237ea43e7773e47513c48fd46 (patch) | |
tree | 58a36002976831ddf2cf99616a01859e2440ef0b /app/models | |
parent | 988b0493fea7a850130b83d0e81675bda8dd9d8e (diff) |
Revert "improve status title (#8596)" (#13591)
This reverts commit 05756c9a14864655ae6777505a4ee5cfa9b0ee93.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 30f86e664..a938ff032 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -200,12 +200,8 @@ class Status < ApplicationRecord def title if destroyed? "#{account.acct} deleted status" - elsif reblog? - preview = sensitive ? '<sensitive>' : text.slice(0, 10).split("\n")[0] - "#{account.acct} shared #{reblog.account.acct}'s: #{preview}" else - preview = sensitive ? '<sensitive>' : text.slice(0, 20).split("\n")[0] - "#{account.acct}: #{preview}" + reblog? ? "#{account.acct} shared a status by #{reblog.account.acct}" : "New status by #{account.acct}" end end |