about summary refs log tree commit diff
path: root/app/controllers/api/v1
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-21 10:35:09 +0100
committerGitHub <noreply@github.com>2022-11-21 10:35:09 +0100
commit51a33ce77a32b85eaff37670c40a497aaef13e18 (patch)
tree32c1f590733ffbb76901630f6243e62fa22aacfb /app/controllers/api/v1
parent69378eac99c013a0db7d2d5ff9a54dfcc287d9ce (diff)
Fix not being able to follow more than one hashtag (#21285)
Fixes regression from #20860
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r--app/controllers/api/v1/tags_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/tags_controller.rb b/app/controllers/api/v1/tags_controller.rb
index 0966ee469..272362c31 100644
--- a/app/controllers/api/v1/tags_controller.rb
+++ b/app/controllers/api/v1/tags_controller.rb
@@ -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