diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2019-08-19 03:54:36 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-18 20:54:36 +0200 |
commit | 9e1d28f48e8197690ab4ec9ff02d981f408bf875 (patch) | |
tree | ef91bc9515fe0e83c5e2694fe95370b3295308b5 /app/serializers/rss | |
parent | a8b0bb355d3e7351b9f3d53fe7a3fb6d3d011d33 (diff) |
Add an RSS feed tagged to a public profile page (#10502)
* Add featured tag support to rss feed on public account page * fix codeing style
Diffstat (limited to 'app/serializers/rss')
-rw-r--r-- | app/serializers/rss/account_serializer.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/serializers/rss/account_serializer.rb b/app/serializers/rss/account_serializer.rb index 278affe13..680d9de6f 100644 --- a/app/serializers/rss/account_serializer.rb +++ b/app/serializers/rss/account_serializer.rb @@ -5,12 +5,12 @@ class RSS::AccountSerializer include StatusesHelper include RoutingHelper - def render(account, statuses) + def render(account, statuses, tag) builder = RSSBuilder.new builder.title("#{display_name(account)} (@#{account.local_username_and_domain})") .description(account_description(account)) - .link(ActivityPub::TagManager.instance.url_for(account)) + .link(tag.present? ? short_account_tag_url(account, tag) : short_account_url(account)) .logo(full_pack_url('media/images/logo.svg')) .accent_color('2b90d9') @@ -33,7 +33,7 @@ class RSS::AccountSerializer builder.to_xml end - def self.render(account, statuses) - new.render(account, statuses) + def self.render(account, statuses, tag) + new.render(account, statuses, tag) end end |