0
0
Fork 0

Fix not being able to follow more than one hashtag (#21285)

Fixes regression from #20860
This commit is contained in:
Claire 2022-11-21 10:35:09 +01:00 committed by GitHub
parent 69378eac99
commit 51a33ce77a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

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