The code powering m.abunchtell.com https://m.abunchtell.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

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