Make tag following idempotent (#20860)

th-downstream
trwnh 2 years ago committed by GitHub
parent 0f402ff0eb
commit 699bec589f

@ -12,7 +12,7 @@ class Api::V1::TagsController < Api::BaseController
end end
def follow def follow
TagFollow.create!(tag: @tag, account: current_account, rate_limit: true) TagFollow.first_or_create!(tag: @tag, account: current_account, rate_limit: true)
render json: @tag, serializer: REST::TagSerializer render json: @tag, serializer: REST::TagSerializer
end end

Loading…
Cancel
Save