You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
415 B

  1. # frozen_string_literal: true
  2. class AfterRemoteFollowWorker
  3. include Sidekiq::Worker
  4. sidekiq_options retry: 5
  5. def perform(follow_id)
  6. follow = Follow.find(follow_id)
  7. updated_account = FetchRemoteAccountService.new.call(follow.target_account.remote_url)
  8. return unless updated_account.locked?
  9. follow.destroy
  10. FollowService.new.call(follow.account, updated_account.acct)
  11. end
  12. end