The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

18 linhas
451 B

  1. # frozen_string_literal: true
  2. class AfterRemoteFollowWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull', 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 if updated_account.nil? || !updated_account.locked?
  9. follow.destroy
  10. FollowService.new.call(follow.account, updated_account.acct)
  11. end
  12. end