about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorEugen <eugen@zeonfederated.com>2017-04-09 20:55:54 +0200
committerGitHub <noreply@github.com>2017-04-09 20:55:54 +0200
commitc1729197458588a25e8f884db22360780e43d5c7 (patch)
treed880b8003f6c8c76e3c452cde4cabcfb38742ba4 /app/models
parent15d442cf9dcd0ba5958be54c285dfeb32276190e (diff)
Fix #1339 - better Atom titles (#1343)
Diffstat (limited to 'app/models')
-rw-r--r--app/models/status.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 7e3dd3e28..16cd4383f 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -75,7 +75,7 @@ class Status < ApplicationRecord
   end
 
   def title
-    content
+    reblog? ? "#{account.acct} shared a status by #{reblog.account.acct}" : "New status by #{account.acct}"
   end
 
   def hidden?