about summary refs log tree commit diff
path: root/app/views/tags/show.rss.ruby
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2022-05-13 05:40:54 +0900
committerGitHub <noreply@github.com>2022-05-12 22:40:54 +0200
commit12535568f7435ed627c37312782f8ca07e83eca9 (patch)
tree74f3beaae56ea0092cad9deba5130dcf96244c35 /app/views/tags/show.rss.ruby
parentbda8345e91b0e1d7b2c0534d09cb53973cb9ab18 (diff)
Fix rss view on hashtag (#18406)
Diffstat (limited to 'app/views/tags/show.rss.ruby')
-rw-r--r--app/views/tags/show.rss.ruby1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/views/tags/show.rss.ruby b/app/views/tags/show.rss.ruby
index 4152ecd24..f4481b81c 100644
--- a/app/views/tags/show.rss.ruby
+++ b/app/views/tags/show.rss.ruby
@@ -3,7 +3,6 @@ RSS::Builder.build do |doc|
   doc.description(I18n.t('rss.descriptions.tag', hashtag: @tag.name))
   doc.link(tag_url(@tag))
   doc.last_build_date(@statuses.first.created_at) if @statuses.any?
-  doc.icon(full_asset_url(@account.avatar.url(:original)))
   doc.logo(full_pack_url('media/images/logo_transparent_white.svg'))
   doc.generator("Mastodon v#{Mastodon::Version.to_s}")