1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-13 22:23:48 -05:00

20 lines
391 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RedownloadMediaWorker
include Sidekiq::Worker
include ExponentialBackoff
sidekiq_options queue: 'pull', retry: 3
def perform(id)
media_attachment = MediaAttachment.find(id)
return if media_attachment.remote_url.blank?
media_attachment.reset_file!
media_attachment.save
rescue ActiveRecord::RecordNotFound
true
end
end