Skip to content
Snippets Groups Projects
Unverified Commit 7fdeed5f authored by trwnh's avatar trwnh Committed by GitHub
Browse files

Make tag following idempotent (#20860)

parent 72618ebf
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ class Api::V1::TagsController < Api::BaseController
end
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
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment