0
0
Fork 0

Fix server error when failing to follow back followers from /relationships (#23787)

This commit is contained in:
Claire 2023-03-03 20:36:18 +01:00 committed by GitHub
parent b55fc883b6
commit f8bb4d0d6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 0 deletions

View file

@ -35,9 +35,15 @@ class Form::AccountBatch
private
def follow!
error = nil
accounts.each do |target_account|
FollowService.new.call(current_account, target_account)
rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound => e
error ||= e
end
raise error if error.present?
end
def unfollow!