Remove implied StandardError rescue (#23942)

main^2
Nick Schonning 2 years ago committed by GitHub
parent c65c34dfd1
commit b00f945d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,7 +11,7 @@ class ActivityPub::MigratedFollowDeliveryWorker < ActivityPub::DeliveryWorker
def unfollow_old_account!(old_target_account_id) def unfollow_old_account!(old_target_account_id)
old_target_account = Account.find(old_target_account_id) old_target_account = Account.find(old_target_account_id)
UnfollowService.new.call(@source_account, old_target_account, skip_unmerge: true) UnfollowService.new.call(@source_account, old_target_account, skip_unmerge: true)
rescue StandardError rescue
true true
end end
end end

Loading…
Cancel
Save