The code powering m.abunchtell.com https://m.abunchtell.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

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