From: Takeshi Umeda Date: Sun, 6 Dec 2020 04:55:35 +0000 (+0900) Subject: Fix remove number sign from account_featured_tags (#15277) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=17a2e276413c6b7c46c2f2b54e86eecc549dfb10;p=mastodon.git Fix remove number sign from account_featured_tags (#15277) --- diff --git a/app/serializers/rest/account_featured_tag_serializer.rb b/app/serializers/rest/account_featured_tag_serializer.rb index d8d5fd68c..84bef2e62 100644 --- a/app/serializers/rest/account_featured_tag_serializer.rb +++ b/app/serializers/rest/account_featured_tag_serializer.rb @@ -9,10 +9,6 @@ class REST::AccountFeaturedTagSerializer < ActiveModel::Serializer object.tag.id.to_s end - def name - "##{object.name}" - end - def url short_account_tag_url(object.account, object.tag) end