1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 23:08:25 +09:00
mastodon/app/workers/link_crawl_worker.rb

14 lines
252 B
Ruby
Raw Normal View History

# 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