1
0
mirror of https://github.com/mastodon/documentation synced 2025-04-11 22:56:17 +02:00
documentation/app/workers/link_crawl_worker.rb

14 lines
252 B
Ruby

# frozen_string_literal: true
class LinkCrawlWorker
include Sidekiq::Worker
sidekiq_options retry: false
def perform(status_id)
FetchLinkCardService.new.call(Status.find(status_id))
rescue ActiveRecord::RecordNotFound
true
end
end