mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
17 lines
382 B
Ruby
17 lines
382 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ThreadResolveWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options retry: false
|
|
|
|
def perform(child_status_id, parent_url)
|
|
child_status = Status.find(child_status_id)
|
|
parent_status = FetchRemoteStatusService.new.call(parent_url)
|
|
|
|
return if parent_status.nil?
|
|
|
|
child_status.thread = parent_status
|
|
child_status.save!
|
|
end
|
|
end
|