The code powering m.abunchtell.com https://m.abunchtell.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

18 lignes
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