Skip to content

Commit

Permalink
Fix server error when failing to follow back followers from `/relatio…
Browse files Browse the repository at this point in the history
…nships` (mastodon#23787)
  • Loading branch information
ClearlyClaire authored and noellabo committed Apr 22, 2023
1 parent 7119444 commit 465c1b3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/controllers/relationships_controller.rb
Expand Up @@ -19,6 +19,8 @@ def update
@form.save
rescue ActionController::ParameterMissing
# Do nothing
rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound
flash[:alert] = I18n.t('relationships.follow_failure') if action_from_button == 'follow'
ensure
redirect_to relationships_path(filter_params)
end
Expand Down
8 changes: 7 additions & 1 deletion app/models/form/account_batch.rb
Expand Up @@ -31,9 +31,15 @@ def save
private

def follow!
accounts.find_each do |target_account|
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!
Expand Down
1 change: 1 addition & 0 deletions config/locales/en.yml
Expand Up @@ -1290,6 +1290,7 @@ en:
relationships:
activity: Account activity
dormant: Dormant
follow_failure: Could not follow some of the selected accounts.
follow_selected_followers: Follow selected followers
followers: Followers
following: Following
Expand Down

0 comments on commit 465c1b3

Please sign in to comment.