about summary refs log tree commit diff
path: root/app/views/accounts/show.rss.ruby
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-06-12 02:48:03 +0200
committerGitHub <noreply@github.com>2022-06-12 02:48:03 +0200
commit620b70c41e4b5d93f2268fd0318bd48e9823a8e1 (patch)
tree2b5f169c510aab8fb91a5e25983983b16044fe37 /app/views/accounts/show.rss.ruby
parentfe2d6fe1057677a1060fe1d882aac744456deff4 (diff)
Remove item titles from RSS feeds (#18640)
Diffstat (limited to 'app/views/accounts/show.rss.ruby')
-rw-r--r--app/views/accounts/show.rss.ruby1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/views/accounts/show.rss.ruby b/app/views/accounts/show.rss.ruby
index 5e1c3a518..fd45a8b2b 100644
--- a/app/views/accounts/show.rss.ruby
+++ b/app/views/accounts/show.rss.ruby
@@ -9,7 +9,6 @@ RSS::Builder.build do |doc|
 
   @statuses.each do |status|
     doc.item do |item|
-      item.title(l(status.created_at))
       item.link(ActivityPub::TagManager.instance.url_for(status))
       item.pub_date(status.created_at)
       item.description(rss_status_content_format(status))